This repository was archived by the owner on Sep 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.01 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.01 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "webpack-command",
"version": "0.4.1",
"description": "A superior CLI experience for webpack. Lightweight, modular, and opinionated.",
"license": "MIT",
"repository": "webpack-contrib/webpack-command",
"author": "Andrew Powell <andrew@shellscape.org>",
"homepage": "https://github.com/webpack-contrib/webpack-command",
"bugs": "https://github.com/webpack-contrib/webpack-command/issues",
"bin": {
"webpack": "lib/cli.js",
"webpack-command": "lib/cli.js",
"wp": "lib/cli.js"
},
"main": "lib/index.js",
"engines": {
"node": ">= 6.9.0 <7.0.0 || >= 8.9.0"
},
"scripts": {
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --cache lib test",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"lint-staged": "lint-staged",
"prepublishOnly": "mkdir -p data && cp -r lib/commands/defaults.json data/commands.json",
"release": "standard-version",
"release:ci": "conventional-github-releaser -p angular",
"release:validate": "commitlint --from=$(git describe --tags --abbrev=0) --to=$(git rev-parse HEAD)",
"security": "nsp check",
"test": "npm run prepublishOnly && mocha test/test.js --exit --timeout=5000",
"test:coverage": "mkdir -p coverage && nyc --silent npm test && npm run test:coverage:report",
"test:coverage:report": "nyc report --reporter=lcov --reporter=text-lcov --reporter=json --reporter=clover > coverage/lcov.info",
"ci:lint": "npm run lint && npm run security",
"ci:test": "npm run test -- --runInBand",
"ci:coverage": "npm run test:coverage -- --runInBand",
"defaults": "webpack-defaults"
},
"files": [
"data/",
"lib/"
],
"peerDependencies": {
"webpack": "^4.4.0"
},
"dependencies": {
"@webpack-contrib/config-loader": "^1.2.0",
"@webpack-contrib/schema-utils": "^1.0.0-beta.0",
"camelcase": "^5.0.0",
"chalk": "^2.3.2",
"debug": "^3.1.0",
"decamelize": "^2.0.0",
"enhanced-resolve": "^4.0.0",
"import-local": "^1.0.0",
"isobject": "^3.0.1",
"loader-utils": "^1.1.0",
"log-symbols": "^2.2.0",
"loud-rejection": "^1.6.0",
"meant": "^1.0.1",
"meow": "^5.0.0",
"merge-options": "^1.0.0",
"object.values": "^1.0.4",
"opn": "^5.3.0",
"ora": "^2.1.0",
"plur": "^3.0.0",
"pretty-bytes": "^5.0.0",
"strip-ansi": "^4.0.0",
"text-table": "^0.2.0",
"titleize": "^1.0.1",
"update-notifier": "^2.3.0",
"v8-compile-cache": "^2.0.0",
"webpack-log": "^1.1.2",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@webpack-contrib/eslint-config-webpack": "^2.0.4",
"babel-cli": "^6.26.0",
"babel-jest": "^23.0.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"camelcase-keys": "^4.2.0",
"codecov": "^3.0.0",
"conventional-github-releaser": "^2.0.2",
"crc": "^3.5.0",
"cross-env": "^5.1.4",
"decamelize-keys": "^1.1.0",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^4.19.1",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"execa": "^0.10.0",
"expect": "^23.1.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"jest-serializer-path": "^0.1.14",
"jest-snapshot": "^23.0.1",
"lint-staged": "^7.0.4",
"memory-fs": "^0.4.1",
"minimist": "^1.2.0",
"minimist-options": "^3.0.2",
"mocha": "^5.1.1",
"nsp": "^3.2.1",
"nyc": "^12.0.2",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1",
"standard-version": "^4.3.0",
"stylelint-webpack-plugin": "^0.10.4",
"webpack": "^4.6.0",
"webpack-defaults": "^2.3.0"
},
"keywords": [
"webpack"
],
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"lib/**/*.js"
]
}
}