-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "@imgcook/wx-miniapp-template",
"eslintConfig": {
"root": true,
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
}
},
"devDependencies": {
"@babel/preset-env": "^7.7.7",
"@babel/preset-stage-0": "^7.0.0",
"@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",
"fs-extra": "^8.0.1",
"lodash": "^4.17.11",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"thunkify": "^2.1.2",
"ts-loader": "^8.2.0",
"typescript": "^4.4.4",
"vm2": "^3.5.2",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"xml-beautifier": "^0.4.0",
"xtemplate": "^4.6.1",
"xtpl": "^3.4.0"
},
"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 "
},
"dependencies": {
"prettier": "^2.4.1"
}
}