52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "webpack-dev-middleware",
|
|
"version": "1.12.2",
|
|
"author": "Tobias Koppers @sokra",
|
|
"description": "Offers a dev middleware for webpack, which arguments a live bundle to a directory",
|
|
"peerDependencies": {
|
|
"webpack": "^1.0.0 || ^2.0.0 || ^3.0.0"
|
|
},
|
|
"dependencies": {
|
|
"memory-fs": "~0.4.1",
|
|
"mime": "^1.5.0",
|
|
"path-is-absolute": "^1.0.0",
|
|
"range-parser": "^1.0.3",
|
|
"time-stamp": "^2.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"codecov.io": "^0.1.6",
|
|
"eslint": "^4.0.0",
|
|
"express": "^4.14.0",
|
|
"file-loader": "^0.11.2",
|
|
"istanbul": "^0.4.5",
|
|
"mocha": "^3.0.2",
|
|
"mocha-sinon": "^2.0.0",
|
|
"should": "^11.1.0",
|
|
"sinon": "^2.3.8",
|
|
"supertest": "^3.0.0",
|
|
"webpack": "^3.0.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|