-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
48 lines (48 loc) · 1.19 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": "perimeterx-node-express",
"version": "6.5.1",
"description": "PerimeterX Express.js middleware to monitor and block traffic according to PerimeterX risk score",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --exit",
"cover": "istanbul cover _mocha",
"lint": "./node_modules/eslint/bin/eslint.js lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerimeterX/perimeterx-node-express.git"
},
"keywords": [
"perimeterx",
"nodejs",
"express",
"security",
"middleware"
],
"author": "Ben Diamant",
"license": "ISC",
"bugs": {
"url": "https://github.com/PerimeterX/perimeterx-node-express/issues"
},
"homepage": "https://github.com/PerimeterX/perimeterx-node-express#readme",
"dependencies": {
"cookie-parser": "^1.4.1",
"perimeterx-node-core": "^2.6.1"
},
"devDependencies": {
"eslint": "^6.5.1",
"eslint-config-perimeterx": "^0.5.0",
"express": "4.16.2",
"faker": "^3.1.0",
"mocha": "^5.2.0",
"rewire": "^2.5.2",
"should": "^8.3.0",
"sinon": "^2.1.0",
"superagent": "^3.8.3",
"uuid": "^3.0.0",
"moment": "^2.19.3"
}
}