-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 798 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 798 Bytes
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
{
"name": "koa-trust-proxy",
"version": "0.1.4",
"description": "Koa2 middleware to trust specific reverse proxies while distrusting another",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha --harmony --reporter spec --exit",
"test-cov": "nyc mocha -- --exit",
"test-travis": "nyc --reporter=lcov mocha -- --exit"
},
"repository": "sageptr/koa-trust-proxy",
"author": "SagePtr",
"license": "ISC",
"bugs": {
"url": "https://github.com/sageptr/koa-trust-proxy/issues"
},
"homepage": "https://github.com/sageptr/koa-trust-proxy#readme",
"devDependencies": {
"koa": "^2.7.0",
"mocha": "^6.1.4",
"nyc": "^14.1.0",
"supertest": "^4.0.2",
"@types/koa": "^2.11.6"
},
"dependencies": {
"ip6addr": "^0.2.3"
}
}