55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
|
{
|
||
|
"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"
|
||
|
}
|
||
|
}
|