-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "simple-dialogue",
"description": "A dead simple, zero-dependency, branching dialogue system written in javascript for RPG and visual novel games",
"version": "1.0.1",
"keywords": [
"branching",
"branching dialogue",
"dialogue",
"dialogue system",
"rpg",
"game",
"npc",
"conversation",
"hub and spoke",
"waterfall"
],
"browser": "./dist/compiled.browser.js",
"main": "./dist/compiled.node.js",
"module": "./dist/compiled.es6.js",
"license": "MIT",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/bpkennedy/simple-dialogue.git"
},
"scripts": {
"prepare": "npm run build",
"build": "./node_modules/.bin/webpack",
"lint": "./node_modules/.bin/eslint ./src --fix",
"test": "./node_modules/.bin/mocha --config .mocharc.js",
"coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=text ./node_modules/.bin/mocha --require @babel/register --recursive --timeout=3000",
"prepull": "npm run lint && npm run coverage",
"publish": "git push --tags && npm publish",
"docs": "node_modules/.bin/jsdoc --configure .jsdoc.json --verbose"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/register": "^7.15.3",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"clean-jsdoc-theme": "^3.2.8",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^9.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"jsdoc": "^3.6.7",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"webpack": "^5.58.2",
"webpack-cli": "^4.9.0"
}
}