-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
87 lines (87 loc) · 2.26 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "easywebpack-cli",
"version": "5.1.0",
"description": "Webpack Building Command Line And Boilerplate Init Tool",
"bin": {
"easywebpack": "bin/cli.js",
"easy": "bin/cli.js"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test-mocha": "mocha test",
"test": "nyc --reporter=html --reporter=text npm run test-mocha",
"cov": "nyc report --reporter=lcov > coverage.lcov && codecov --token=d7567590-d31c-4c14-8707-574d8ab10c03",
"ci": "npm run lint && npm run cov",
"ii": "npm install --registry https://registry.npmmirror.com",
"pub": "npm publish --registry https://registry.npmjs.org"
},
"dependencies": {
"archive-tool": "^1.0.0",
"babel-upgrade": "^1.0.1",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"compressing": "^1.2.3",
"easy-puppeteer-html": "^1.0.0",
"easy-template-config": "^1.2.0",
"execa": "^4.0.3",
"inquirer": "^7.3.3",
"jsdom": "^16.4.0",
"lodash.get": "^4.4.2",
"mz-modules": "^2.1.0",
"node-glob": "^1.2.0",
"node-tool-utils": "^1.0.0",
"ora": "^5.0.0",
"progress-bar-webpack-plugin": "^2.1.0",
"shelljs": "^0.8.5",
"speed-measure-webpack-plugin": "^1.2.2",
"stats-webpack-plugin": "^0.7.0",
"urllib": "^2.36.1",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-tool": "^5.0.0"
},
"devDependencies": {
"chai": "^4.1.0",
"codecov": "^3.7.0",
"conventional-changelog-cli": "^2.1.0",
"eslint": "^7.8.1",
"istanbul": "^0.4.5",
"mocha": "^8.1.3",
"nyc": "^15.1.0"
},
"files": [
"index.js",
"bin",
"lib",
"tool"
],
"nyc": {
"exclude": [
"**/*.spec.js",
"bin/cli.js",
"lib/builder.js",
"lib/command.js",
"index.js",
"test/*.test.js"
]
},
"engines": {
"node": ">=8.0.0"
},
"ci": {
"version": "8, 10, 12, 14, 16, 18, 20"
},
"publishConfig": {
"tag": "5x",
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easy-team/easywebpack-cli.git"
},
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/easy-team/easywebpack-cli"
}