-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "webpack-lazy-dev-build",
"version": "1.1.0",
"description": "Build webpack chunks only when requested",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tfoxy/webpack-lazy-dev-build.git"
},
"keywords": [
"webpack",
"lazy",
"middleware",
"development",
"server",
"chunk"
],
"author": "Tomás Fox <tomas.c.fox@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tfoxy/webpack-lazy-dev-build/issues"
},
"homepage": "https://github.com/tfoxy/webpack-lazy-dev-build#readme",
"devDependencies": {
"chai": "^4.2.0",
"express": "^4.16.4",
"file-loader": "^3.0.1",
"mocha": "^5.2.0",
"sinon": "^7.2.2",
"supertest": "^3.3.0",
"webpack": "^3.12.0",
"webpack-dev-middleware": "^3.5.0",
"webpack-dev-middleware-v2": "npm:webpack-dev-middleware@^2.0.6",
"webpack-v3": "npm:webpack@^3.12.0",
"webpack-v4": "npm:webpack@^4.28.4"
}
}