-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 2.24 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
88
89
90
91
92
93
94
95
96
{
"name": "webpack-nano",
"version": "1.1.1",
"description": "A teensy, squeaky 🐤 clean Webpack CLI",
"license": "MPL-2.0",
"repository": "shellscape/webpack-nano",
"author": "shellscape",
"homepage": "https://github.com/shellscape/webpack-nano",
"bugs": "https://github.com/shellscape/webpack-nano/issues",
"bin": {
"wp": "bin/wp.js"
},
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"ci:coverage": "nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --verbose",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --fix --cache bin/* lib test argv.js",
"lint-staged": "lint-staged",
"security": "npm audit",
"test": "npm run test:v4 && npm run test:v5 && npm run test:cleanup",
"test:cleanup": "npm install webpack@^4.42.0 --no-save",
"test:v4": "ava",
"test:v5": "npm install webpack@^5.0.0 --no-save && ava"
},
"files": [
"bin/",
"lib/",
"argv.js",
"argv.d.ts",
"README.md",
"LICENSE"
],
"peerDependencies": {
"webpack": ">=4.46.0"
},
"dependencies": {
"chalk": "^4.1.0",
"import-local": "^3.0.2",
"rechoir": "^0.7.0",
"yargs-parser": "^20.2.1"
},
"devDependencies": {
"@babel/preset-env": "^7.2.0",
"@babel/register": "^7.0.0",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"ava": "^3.5.1",
"eslint-config-shellscape": "^2.1.0",
"esm": "^3.2.25",
"execa": "^4.0.0",
"lint-staged": "^10.0.8",
"nyc": "^15.0.0",
"p-defer": "^3.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.0.1",
"webpack": "^4.46.0"
},
"keywords": [
"cli",
"cmd",
"command",
"light",
"lightweight",
"nano",
"small",
"teensy",
"webpack"
],
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"lib/client*.js",
"test/"
]
},
"pre-commit": "lint-staged"
}