-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
74 lines (74 loc) · 1.84 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
{
"name": "koa-proxies",
"description": "Http Proxy Middleware for Koa@2.x/next",
"version": "0.12.4",
"keywords": [
"koa",
"middleware",
"proxy",
"proxies"
],
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "nyc mocha",
"coverage": "nyc report --reporter=lcov --reporter=html && codecov -f .nyc_output/*.json",
"ci": "npm run test && npm run coverage",
"lint": "eslint index.js test/",
"version": "standard-version",
"pub": "npm run version && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/vagusX/koa-proxies.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "vagusX",
"license": "MIT",
"bugs": {
"url": "https://github.com/vagusX/koa-proxies/issues"
},
"homepage": "https://github.com/vagusX/koa-proxies#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "npm run lint"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@types/koa": "^2.11.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"codecov": "^3.0.4",
"eslint": "^6.5.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-mocha": "^6.1.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.0.2",
"koa": "^2.5.2",
"lint-staged": "^10.5.1",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"standard-version": "^9.3.2"
},
"dependencies": {
"http-proxy": "^1.18.1",
"path-match": "^1.2.4",
"uuid": "^8.3.2"
},
"peerDependencies": {
"koa": ">=2"
}
}