-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.4 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
{
"name": "wjmachine",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha -r ts-node/register tests/**/*.test.ts",
"coverage": "nyc -r=text-summary -e .ts -x \"*.test.ts\" npm run test",
"ts": "ts-node",
"clean": "rm -rf _bundles lib lib-esm",
"chrome": "node tests/get-cpu-profile.js",
"compile": "npm run clean && tsc && tsc -m es6 --outDir lib-esm && webpack"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/generator": "^7.4.0",
"@babel/parser": "^7.4.3",
"@babel/template": "^7.4.0",
"@babel/traverse": "^7.4.3",
"@babel/types": "^7.4.0",
"chrome-launcher": "^0.10.5",
"chrome-remote-interface": "^0.27.1",
"commander": "^2.20.0",
"deasync": "^0.1.15",
"express": "^4.17.1",
"inversify": "^5.0.1",
"mustache": "^3.0.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3"
},
"devDependencies": {
"@types/babel-traverse": "^6.25.5",
"@types/babel-types": "^7.0.6",
"@types/chai": "^4.2.3",
"@types/inversify": "^2.0.33",
"@types/mocha": "^5.2.7",
"@types/mustache": "^0.8.32",
"@types/node": "^11.13.4",
"@types/reflect-metadata": "^0.1.0",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"nyc": "^14.1.1",
"ts-loader": "^5.4.3",
"ts-node": "^8.4.1",
"typescript": "^3.6.3",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1"
}
}