forked from webpack/webpack-dev-middleware
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "webpack-dev-middleware",
"version": "1.9.0",
"author": "Tobias Koppers @sokra",
"description": "Offers a dev middleware for webpack, which arguments a live bundle to a directory",
"peerDependencies": {
"webpack": "1 || ^2.1.0-beta || ^2.2.0-rc.0"
},
"dependencies": {
"memory-fs": "~0.4.1",
"mime": "^1.3.4",
"path-is-absolute": "^1.0.0",
"range-parser": "^1.0.3"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"eslint": "^3.4.0",
"express": "^4.14.0",
"file-loader": "^0.9.0",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"mocha-sinon": "^1.1.6",
"should": "^11.1.0",
"sinon": "^1.17.5",
"supertest": "^2.0.0",
"webpack": "^2.1.0-beta.22"
},
"license": "MIT",
"engines": {
"node": ">=0.6"
},
"homepage": "http://github.com/webpack/webpack-dev-middleware",
"main": "middleware.js",
"repository": {
"type": "git",
"url": "https://github.com/webpack/webpack-dev-middleware.git"
},
"files": [
"middleware.js",
"lib/"
],
"scripts": {
"lint": "eslint *.js lib test",
"posttest": "npm run -s lint",
"test": "mocha --full-trace --check-leaks",
"beautify": "npm run lint -- --fix",
"cover": "istanbul cover node_modules/mocha/bin/_mocha",
"travis": "npm run cover -- --report lcovonly && npm run lint"
}
}