-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
{
"name": "lazy-compile-webpack-plugin",
"version": "0.1.11",
"description": "Lazy compile dynamic imports to boost your webpack startup time.",
"keywords": [
"webpack",
"plugin",
"lazy-compile-webpack-plugin",
"lazy",
"compile",
"dynamic",
"import"
],
"engines": {
"node": ">=8.10"
},
"repository": {
"type": "git",
"url": "https://github.com/liximomo/lazy-compile-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/liximomo/lazy-compile-webpack-plugin/issues"
},
"homepage": "https://github.com/liximomo/lazy-compile-webpack-plugin/#readme",
"main": "index.js",
"author": "liximomo",
"license": "MIT",
"files": [
"index.js",
"lib"
],
"scripts": {
"demo": "cd demo && npm start",
"test": "jest",
"release": "bash scripts/release.sh"
},
"dependencies": {
"detect-port-alt": "^1.1.6",
"loader-utils": "^1.2.3"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"jest": "^24.8.0",
"memory-fs": "^0.4.1",
"superagent": "^5.1.0",
"webpack": "^4.35.3"
},
"jest": {
"verbose": true,
"moduleFileExtensions": [
"js"
],
"testMatch": [
"<rootDir>/tests/**/*.spec.js"
]
}
}