-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1009 Bytes
/
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
{
"name": "traffic-manager-agent",
"version": "0.0.5",
"description": "Middleware to monitor patterns in your web app traffic.",
"main": "main.js",
"author": "Vot Z <https://vot-z.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vot/traffic-manager-agent.git"
},
"bugs": {
"url": "https://github.com/vot/traffic-manager-agent/issues"
},
"keywords": [
"traffic",
"rate limit"
],
"homepage": "https://vothub.com/traffic-manager",
"scripts": {
"start": "node main.js",
"lint": "eslint .",
"test": "mocha **/*.spec.js",
"prepublishOnly": "npm run lint && npm run test"
},
"dependencies": {
"lodash": "^4.17.15",
"request": "^2.88.2",
"request-ip": "^2.1.3"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "6.8.0",
"eslint-config-airbnb-base": "14.1.0",
"eslint-plugin-import": "^2.20.1",
"nyc": "^15.0.0",
"mocha": "^7.1.1",
"mocha-lcov-reporter": "^1.3.0"
}
}