-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.18 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
{
"name": "eisenscript",
"version": "2.2.2",
"scripts": {
"start": "$(npm bin)/gulp serve",
"test": "$(npm bin)/istanbul cover $(npm bin)/_mocha test -- --recursive",
"jison": "$(npm bin)/jison src/parser.jison -o src/parser.js",
"build": "$(npm bin)/webpack --config webpack.config.js -p",
"release": "npm login && $(npm bin)/release-it",
"serve-doc": "$(npm bin)/docpress serve",
"build-doc": "$(npm bin)/docpress build"
},
"devDependencies": {
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-register": "^6.16.3",
"browser-sync": "^2.29.1",
"chai": "^4.2.0",
"color-js": "^1.0.3",
"docpress": "^0.8.2",
"gulp": "^4.0.2",
"gulp-load-plugins": "^2.0.3",
"gulp-plumber": "^1.0.1",
"gulp-spawn-mocha": "^6.0.0",
"istanbul": "^0.4.5",
"jison": "^0.4.17",
"mocha": "^7.1.1",
"release-it": "^15.10.1",
"webpack": "^1.13.2",
"webpack-stream": "^3.2.0"
},
"dependencies": {},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"quotes": [
2,
"single"
]
}
}
}