-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathpackage.json
78 lines (78 loc) · 1.9 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "koa-webpack",
"version": "6.0.0",
"description": "Development and Hot Reload Middleware for Koa2",
"license": "MPL-2.0",
"repository": "shellscape/koa-webpack",
"author": "Andrew Powell <[email protected]>",
"homepage": "https://github.com/shellscape/koa-webpack",
"bugs": "https://github.com/shellscape/koa-webpack/issues",
"main": "lib/index.js",
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"ci:coverage": "nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --verbose",
"lint": "eslint --fix --cache lib test",
"lint-staged": "lint-staged",
"security": "npm audit --audit-level=high",
"test": "ava --timeout=2500"
},
"files": [
"lib/",
"LICENSE",
"README.md"
],
"peerDependencies": {
"webpack": "^4.28.0"
},
"dependencies": {
"app-root-path": "^3.0.0",
"chalk": "^4.1.0",
"joi": "^17.2.0",
"merge-options": "^2.0.0",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-client": "^4.1.2"
},
"devDependencies": {
"@commitlint/cli": "^9.1.2",
"ava": "^3.11.1",
"eslint": "^6.0.1",
"eslint-config-shellscape": "^2.1.0",
"husky": "^4.2.5",
"killable": "^1.0.1",
"koa": "^2.13.0",
"koa-compose": "^4.1.0",
"lint-staged": "^10.2.11",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.13.4",
"supertest": "^4.0.2",
"webpack": "^4.44.1"
},
"keywords": [
"koa",
"middleware",
"webpack"
],
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
]
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"pre-commit": "lint-staged"
}