-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "ip-allowed",
"version": "1.1.1",
"description": "A middleware for access permissions based on IP/host addresses. Customers who are not on the whitelist have their requests blocked.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "nyc --reporter=text-summary mocha --opts test/mocha.opts test/*.spec.js",
"test:cov": "nyc --clean --all --reporter=html --reporter=text mocha --opts test/mocha.opts test/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nutes-uepb/ip-allowed"
},
"keywords": [
"middleware",
"ip",
"allowed",
"ip-allowed",
"address",
"blocker",
"ip-blocker",
"denied",
"whitelist",
"access-control",
"host",
"hostnames",
"security"
],
"author": "NUTES/UEPB",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/nutes-uepb/ip-allowed/issues"
},
"homepage": "https://github.com/nutes-uepb/ip-allowed#readme",
"dependencies": {
"ipaddr.js": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"express": "^4.17.1",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
}
}