-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
49
50
{
"name": "api-usage-rate",
"version": "1.0.0",
"description": "An Express-based middleware to trace usage rate of APIs and show them in real time with great visualization tools.",
"main": "index.js",
"scripts": {
"test": "nyc ava",
"lint": "eslint ./*.js --fix",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov | ./node_modules/.bin/coveralls"
},
"nyc": {
"exclude": [
"controllers/*.js",
"test*.js"
]
},
"repository": "git@github.com:Maples7/api-usage-rate.git",
"keywords": [
"api",
"api-usage-rate",
"express",
"middleware",
"real-time",
"data visualization"
],
"author": "Maples7 <maples7.com>",
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"ioredis": "^2.5.0",
"lodash": "^4.17.4",
"serve-static": "^1.12.1"
},
"devDependencies": {
"ava": "^0.18.2",
"coveralls": "^2.12.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"express": "^4.15.2",
"express-mount-routes": "^1.0.0",
"nyc": "^10.2.0",
"supertest": "^3.0.0"
},
"engines" : {
"node" : ">=6.1.0"
}
}