-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.2 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
{
"name": "sample-project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run start:dev",
"start:dev": "webpack --watch",
"test:watch": "mocha-webpack --watch",
"test": "mocha-webpack --webpack-config webpack.test.config.js --reporter=json",
"coverage": "cross-env NODE_ENV=coverage nyc --reporter=json-summary npm run test",
"lint": "eslint -f json -o ./lint/eslint-report.json src"
},
"nyc": {
"include": [
"src/**/*.js"
],
"instrument": false,
"sourceMap": false
},
"author": "",
"license": "ISC",
"dependencies": {
"astring": "^1.3.1",
"escodegen": "^1.11.0",
"esgraph": "^0.3.0",
"esprima": "^4.0.0",
"estraverse": "^4.2.0",
"jquery": "^3.3.1",
"viz": "0.0.1",
"viz.js": "^1.8.1"
},
"devDependencies": {
"cross-env": "^5.2.0",
"eslint": "^5.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"nyc": "^12.0.2",
"webpack": "^4.12.2",
"webpack-cli": "^2.1.4"
}
}