-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "koa2-http-proxy-middleware",
"version": "1.0.1",
"description": "koa2 http proxy middleware",
"main": "index.js",
"scripts": {
"test": "NODE_ENV='dev' nodemon ./test/app.js",
"lint": "standard",
"lint-fix": "standard --fix",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qianlongo/koa2-http-proxy-middleware.git"
},
"keywords": [],
"author": "qianlongo",
"license": "ISC",
"bugs": {
"url": "https://github.com/qianlongo/koa2-http-proxy-middleware/issues"
},
"homepage": "https://github.com/qianlongo/koa2-http-proxy-middleware#readme",
"devDependencies": {
"koa": "^2.4.1",
"koa-better-http-proxy": "^0.2.4",
"koa-bodyparser": "^4.2.0",
"koa-compose": "^4.0.0",
"koa-router": "^7.3.0",
"koa-server-http-proxy": "^0.1.0",
"nodemon": "^1.14.8",
"precommit-hook": "^3.0.0",
"standard": "^10.0.3"
},
"pre-commit": [
"lint"
],
"dependencies": {
"axios": "^0.18.0"
},
"directories": {
"lib": "lib",
"test": "test"
}
}