-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.24 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-koa2-middleware",
"version": "2.1.0",
"author": "Vincent @iyuq",
"description": "Offers a dev middleware for webpack, which arguments a live bundle to a directory for koa2",
"keywords": [
"webpack",
"koa",
"middleware",
"webpack-dev-middleware"
],
"peerDependencies": {
"webpack": "1 || 2 || 3"
},
"dependencies": {
"webpack-dev-middleware": "^1.12.0"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"eslint": "^4.3.0",
"file-loader": "^0.9.0",
"istanbul": "^0.4.5",
"koa": "^2.3.0",
"mocha": "^3.0.2",
"should": "^11.1.0",
"supertest": "^2.0.0",
"webpack": "^3.3.0"
},
"license": "MIT",
"engines": {
"node": ">=6.x"
},
"homepage": "http://github.com/iyuq/webpack-koa2-middleware",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/iyuq/webpack-koa2-middleware.git"
},
"files": [
"index.js"
],
"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"
}
}