-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 923 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
{
"name": "@rill/rate-limit",
"description": "RIll middleware to rate-limit an API.",
"version": "0.2.0",
"author": "Dylan Piercey <[email protected]>",
"browser": "client/index.js",
"bugs": "https://github.com/rill-js/rate-limit/issues",
"devDependencies": {
"rill": "^5.0.14",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"supertest": "^3.0.0",
"tap-spec": "^4.1.1",
"tape": "^4.8.0"
},
"homepage": "https://github.com/rill-js/rate-limit",
"keywords": [
"rate-limit",
"rate",
"limit",
"throttle",
"isomorphic",
"rill",
"universal"
],
"license": "MIT",
"main": "server/index.js",
"repository": {
"type": "git",
"url": "https://github.com/rill-js/rate-limit"
},
"scripts": {
"test": "standard --verbose | snazzy && tape ./test/**/*.test.js | tap-spec"
},
"dependencies": {
"keyv": "^2.0.0",
"ms": "^2.0.0"
}
}