-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.61 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
55
56
57
58
59
60
61
{
"name": "statechart-graph",
"version": "0.0.1",
"description": "generating d3 treegraphs from statechart.js states",
"main": "dist/statechart-graph.js",
"module": "dist/statechart-graph.mjs",
"jsnext:main": "dist/statechart-graph.mjs",
"scripts": {
"ERROR_ON_RUN_prebuild": "eslint lib test",
"build": "rollup -c",
"prod": "rollup -c; zip -r chrome-extension chrome-extension",
"zip": "zip -r chrome-extension{.zip,}",
"watch": "rollup -c -w",
"live": "find lib/ | entr rollup -c",
"pretest": "npm run build",
"test": "mocha",
"prepublish": "npm test",
"tw": "find lib/ | entr npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rollup/rollup-starter-project.git"
},
"keywords": [
"chrome-extension",
"statechart-graph",
"statechart",
"statechartjs",
"treegraph"
],
"author": "Congwen Ma",
"license": "MIT",
"bugs": {
"url": "https://github.com/rollup/rollup-starter-project/issues"
},
"files": [
"lib",
"dist"
],
"dependencies": {
"express": "^4.14.0",
"material-css": "^0.7.0",
"statechartjs": "^0.2.0"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-external-helpers": "^6.8.0",
"babel-preset-es2015": "^6.13.2",
"babel-register": "^6.11.6",
"babelrc-rollup": "^3.0.0",
"eslint": "^3.2.2",
"istanbul": "^0.4.4",
"mocha": "^3.0.2",
"rollup": "^0.34.7",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-istanbul": "^1.0.0",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^2.5.0",
"uglify-js": "^2.7.3"
}
}