-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.3 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
{
"name": "webpack-hot-middleware",
"version": "2.25.0",
"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",
"security": "npm audit",
"ci:lint": "npm run lint && npm run security",
"ci:test": "npm run test",
"ci:coverage": "npm run test:coverage",
"test:coverage": "istanbul cover _mocha --",
"lint": "eslint . --max-warnings 0"
},
"repository": {
"type": "git",
"url": "https://github.com/webpack-contrib/webpack-hot-middleware.git"
},
"author": "Glen Mailer <glen@stainlessed.co.uk>",
"license": "MIT",
"dependencies": {
"ansi-html": "0.0.7",
"html-entities": "^1.2.0",
"querystring": "^0.2.0",
"strip-ansi": "^3.0.0"
},
"devDependencies": {
"eslint": "^5.14.1",
"eslint-plugin-prettier": "^3.0.1",
"express": "^4.13.3",
"istanbul": "^0.4.2",
"mocha": "^5.2.0",
"prettier": "^1.16.4",
"sinon": "^1.12.2",
"supertest": "^3.1.0",
"webpack": "^4.20.2",
"webpack-dev-middleware": "^3.4.0"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
}
}