forked from webpack/webpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.74 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
{
"name": "webpack-cli",
"version": "0.0.1",
"description": "CLI for webpack & friends",
"license": "MIT",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/webpack/webpack-cli.git"
},
"bin": {
"webpack-cli": "./bin/webpack.js"
},
"main": "./bin/webpack.js",
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"lint:bin": "eslint ./bin",
"lint:lib": "eslint ./lib",
"lint:test": "eslint ./__mocks__",
"lint:staged": "lint-staged",
"lint": "npm run lint:bin && npm run lint:lib && npm run lint:test",
"install-commit-validator": "fit-commit-js install",
"test": "jest --coverage"
},
"dependencies": {
"babel-core": "^6.21.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-3": "^6.17.0",
"chalk": "^1.1.3",
"cross-spawn": "^5.0.1",
"diff": "^3.2.0",
"enhanced-resolve": "^3.0.2",
"fit-commit-js": "^0.3.1",
"got": "^6.6.3",
"inquirer": "^2.0.0",
"interpret": "^1.0.1",
"jscodeshift": "^0.3.30",
"loader-utils": "^0.2.16",
"lodash": "^4.17.4",
"recast": "git://github.com/kalcifer/recast.git#bug/allowbreak",
"rx": "^4.1.0",
"supports-color": "^3.1.2",
"webpack": "^2.2.0-rc.0",
"webpack-addons-ylvis": "0.0.27",
"yargs": "^6.5.0"
},
"devDependencies": {
"ajv": "^4.11.3",
"ajv-keywords": "^1.5.1",
"babel-cli": "^6.18.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.20.0",
"eslint": "^3.12.2",
"eslint-plugin-node": "^3.0.5",
"jest": "^19.0.2",
"lint-staged": "^3.2.8",
"pre-commit": "^1.2.2"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint:staged"
}