-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "split-webpack-plugin",
"version": "1.1.0",
"description": "Automates division process of files to serve your webpack bundles",
"main": "src/index.js",
"scripts": {
"build": "node examples/build.js",
"test": "npm run lint && mocha --recursive test/*.spec.js",
"debug-build": "node --inspect --debug-brk examples/build.js",
"debug": "node --inspect --debug-brk ./node_modules/mocha/bin/_mocha",
"lint": "eslint '**/*.js'",
"fix": "npm run lint -- --fix",
"coverage": "istanbul cover --root src ./node_modules/mocha/bin/_mocha -R test/*.spec.js",
"codecov": "codecov"
},
"keywords": [
"webpack",
"split",
"plugin",
"split-webpack-plugin"
],
"author": "lxjwlt",
"license": "MIT",
"files": [
"src"
],
"bugs": {
"url": "https://github.com/lxjwlt/split-webpack-plugin/issues"
},
"engines": {
"node": ">= 6.9.5"
},
"repository": {
"type": "git",
"url": "https://github.com/lxjwlt/split-webpack-plugin.git"
},
"homepage": "https://github.com/lxjwlt/split-webpack-plugin",
"devDependencies": {
"chai": "^4.0.1",
"codecov": "^2.2.0",
"css-loader": "^0.28.4",
"dir-compare": "^1.4.0",
"eslint": "^4.1.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.6.0",
"eslint-plugin-node": "^5.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"extract-text-webpack-plugin": "^2.1.2",
"fs-extra": "^3.0.1",
"html-webpack-plugin": "^2.28.0",
"istanbul": "^0.4.5",
"mocha": "^3.4.2",
"style-loader": "^0.18.2",
"webpack": "^2.6.1",
"zombie": "^5.0.5"
},
"peerDependencies": {
"webpack": "1 || ^2 || ^2.1.0-beta || ^2.2.0-rc || ^3"
}
}