-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.63 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
{
"name": "egg-proxifier",
"version": "1.0.3",
"description": "Request proxy middleware for egg framework.based on http-proxy",
"main": "index.js",
"files": [
"index.js",
"LICENSE",
"README.MD"
],
"engines": {
"node": ">=10.16.0"
},
"scripts": {
"semantic-release": "semantic-release",
"test": "nyc mocha --exit",
"coverage": "nyc report --reporter=lcov --reporter=html && codecov -f .nyc_output/*.json",
"lint": "eslint index.js test/ --fix"
},
"keywords": [
"egg",
"egg-proxy",
"proxy-middleware"
],
"repository": {
"type": "git",
"url": "[email protected]:SliverYuki/egg-proxifier.git"
},
"bugs": {
"url": "https://github.com/SliverYuki/egg-proxifier/issues"
},
"author": "Adrian Lee",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint index.js test/ --fix"
},
"dependencies": {
"http-proxy": "^1.18.0",
"path-match": "^1.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^8.2.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"codecov": "^3.6.1",
"egg": "^2.26.0",
"egg-mock": "^3.25.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"express": "^4.17.1",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"mocha": "^10.2.0",
"nyc": "^14.1.1",
"semantic-release": "^19.0.3",
"sinon": "^7.5.0"
}
}