-
-
Notifications
You must be signed in to change notification settings - Fork 622
/
Copy pathpackage.json
140 lines (140 loc) · 3.49 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
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
132
133
134
135
136
137
138
139
140
{
"name": "webpack-cli",
"version": "2.0.13",
"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": ">=6.11.5"
},
"scripts": {
"lint": "eslint \"**/*.js\"",
"format": "prettier-eslint \"bin/**/*.js\" \"lib/**/*.js\" \"test/**/*.js\" --write",
"lint:codeOnly": "eslint \"{lib,bin}/**/!(__testfixtures__)/*.js\" \"{lib,bin}/**.js\"",
"precommit": "lint-staged",
"pretest": "npm run lint",
"test": "nyc jest",
"reportCoverage": "nyc report --reporter=json && codecov -f coverage/coverage-final.json --disable=gcov",
"jsdoc": "jsdoc -c jsdoc.json -r -d docs",
"appveyor:lint": "npm run lint",
"appveyor:test": "nyc jest && npm run reportCoverage",
"travis:integration": "nyc jest && npm run reportCoverage",
"travis:lint": "npm run lint && npm run bundlesize",
"bundlesize": "bundlesize",
"changelog": "conventional-changelog --config ./build/changelog-generator/index.js --infile CHANGELOG.md --same-file"
},
"lint-staged": {
"{lib,bin}/**/!(__testfixtures__)/**.js": [
"eslint --fix",
"git add"
]
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"none"
]
},
"nyc": {
"exclude": [
"**/__testfixtures__/**"
],
"include": [
"lib/**.js",
"bin/**.js"
],
"reporter": [
"lcov"
],
"all": true
},
"bundlesize": [
{
"path": "./lib/migrate/**.js",
"maxSize": "1 kB"
},
{
"path": "./lib/init/**/**.js",
"maxSize": "1.6 kB"
},
{
"path": "./lib/utils/**.js",
"maxSize": "5 kB"
}
],
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"dependencies": {
"chalk": "^2.3.2",
"cross-spawn": "^6.0.5",
"diff": "^3.5.0",
"enhanced-resolve": "^4.0.0",
"glob-all": "^3.1.0",
"global-modules": "^1.0.0",
"got": "^8.2.0",
"inquirer": "^5.1.0",
"interpret": "^1.0.4",
"jscodeshift": "^0.5.0",
"listr": "^0.13.0",
"loader-utils": "^1.1.0",
"lodash": "^4.17.5",
"log-symbols": "^2.2.0",
"mkdirp": "^0.5.1",
"p-each-series": "^1.0.0",
"p-lazy": "^1.0.0",
"prettier": "^1.5.3",
"resolve-cwd": "^2.0.0",
"supports-color": "^5.3.0",
"v8-compile-cache": "^1.1.2",
"webpack-addons": "^1.1.5",
"yargs": "^11.0.0",
"yeoman-environment": "^2.0.0",
"yeoman-generator": "^2.0.3"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/prompt-cli": "^6.1.3",
"@commitlint/travis-cli": "^6.1.3",
"bundlesize": "^0.16.0",
"codecov": "^3.0.0",
"commitizen": "^2.9.6",
"conventional-changelog-cli": "^1.3.16",
"conventional-changelog-lint-config-cz": "^0.3.0",
"cz-customizable": "^5.2.0",
"eslint": "^4.18.2",
"eslint-plugin-node": "^6.0.1",
"husky": "^0.14.3",
"jest": "^22.4.2",
"jest-cli": "^22.4.2",
"jsdoc": "^3.5.5",
"lint-staged": "^7.0.0",
"nyc": "^11.4.1",
"prettier-eslint-cli": "^4.7.1",
"schema-utils": "^0.4.5",
"webpack": "^4.1.1",
"webpack-dev-server": "^3.0.0"
},
"files": [
"bin",
"lib",
"schemas"
]
}