forked from webpack/webpack-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.08 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
{
"name": "webpack-cli",
"version": "1.3.3",
"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 --runInBand"
},
"dependencies": {
"babel-code-frame": "^6.22.0",
"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",
"global-modules": "^0.2.3",
"got": "^6.6.3",
"inquirer": "^2.0.0",
"interpret": "^1.0.1",
"jscodeshift": "^0.3.30",
"listr": "^0.11.0",
"loader-utils": "^0.2.16",
"lodash": "^4.17.4",
"p-each-series": "^1.0.0",
"p-lazy": "^1.0.0",
"prettier": "^1.2.2",
"recast": "git://github.com/kalcifer/recast.git#bug/allowbreak",
"resolve-cwd": "^2.0.0",
"supports-color": "^3.1.2",
"webpack": "^2.5.1",
"webpack-addons": "^1.1.2",
"yargs": "^6.5.0",
"yeoman-environment": "^1.6.6",
"yeoman-generator": "git://github.com/ev1stensberg/generator.git#Feature-getArgument"
},
"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",
"jest": {
"testEnvironment": "node"
}
}