-
Notifications
You must be signed in to change notification settings - Fork 296
/
package.json
50 lines (50 loc) · 1.15 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-hot-middleware",
"version": "2.26.1",
"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",
"coverage": "nyc npm run test",
"lint": "eslint . --max-warnings 0",
"prettier": "prettier --write ."
},
"repository": {
"type": "git",
"url": "https://github.com/webpack-contrib/webpack-hot-middleware.git"
},
"author": "Glen Mailer <[email protected]>",
"license": "MIT",
"dependencies": {
"ansi-html-community": "0.0.8",
"html-entities": "^2.1.0",
"strip-ansi": "^6.0.0"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"sinon": "^9.2.4",
"supertest": "^6.1.3",
"webpack": "^5.74.0",
"webpack-dev-middleware": "^5.3.3"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "always"
}
}