forked from webpack-contrib/webpack-hot-middleware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 891 Bytes
/
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-hot-middleware",
"version": "2.12.2",
"description": "Webpack hot reloading you can attach to your own server",
"keywords": [
"webpack",
"hmr",
"hot",
"module",
"reloading",
"hot-reloading",
"middleware",
"express"
],
"main": "middleware.js",
"scripts": {
"test": "mocha",
"travis": "istanbul cover _mocha --"
},
"repository": {
"type": "git",
"url": "https://github.com/glenjamin/webpack-hot-middleware.git"
},
"author": "Glen Mailer <[email protected]>",
"license": "MIT",
"dependencies": {
"ansi-html": "0.0.5",
"html-entities": "^1.2.0",
"querystring": "^0.2.0",
"strip-ansi": "^3.0.0"
},
"devDependencies": {
"express": "^4.13.3",
"mocha": "^2.3.2",
"supertest": "^1.1.0",
"sinon": "^1.12.2",
"coveralls": "^2.11.2",
"istanbul": "^0.4.2"
}
}