-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
36 lines (36 loc) · 1.02 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
{
"name": "h5-standard",
"version": "0.0.10",
"devDependencies": {
"@imgcook/dsl-helper": "^0.0.1-alpha.0",
"@types/node": "^16.11.7",
"chai": "^4.3.4",
"co": "^4.6.0",
"css": "^3.0.0",
"lodash": "^4.17.19",
"lodash.find": "^4.6.0",
"lodash.unset": "^4.5.2",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"request": "^2.88.2",
"thunkify": "^2.1.2",
"ts-loader": "^8.2.0",
"typescript": "^4.4.4",
"vm2": "^3.8.0",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"xml-beautifier": "^0.4.0",
"xtemplate": "^4.6.1",
"xtpl": "^3.4.0"
},
"main": "./src/entry.js",
"scripts": {
"debug": "npx webpack --config webpack.config.js --mode=development",
"build": "npx webpack --config webpack.config.js --mode=production",
"demo": "node ./test/index.js",
"test": "mocha --colors test/**/*.test.js",
"start": "node ./test/index.js",
"test-with-coverage": "nyc --reporter=html mocha --exit --colors test/**/*.test.js "
}
}