forked from limitd/limitdb
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
35 lines (35 loc) · 900 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
{
"name": "limitd-redis",
"version": "8.4.0",
"description": "A database client for limits on top of redis",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/auth0/limitd-redis.git"
},
"scripts": {
"test-standalone": "NODE_ENV=test nyc mocha --exit --exclude '**/*clustermode*'",
"test-cluster": "NODE_ENV=test nyc mocha --exit --exclude '**/*standalonemode*'"
},
"author": "Auth0",
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"disyuntor": "^3.5.0",
"ioredis": "^5.3.2",
"lodash": "^4.17.15",
"lru-cache": "^4.1.5",
"ms": "^2.1.2",
"retry": "^0.12.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-exclude": "^2.1.0",
"eslint": "^6.1.0",
"mocha": "^5.2.0",
"mockdate": "^3.0.5",
"nyc": "^14.1.1",
"sinon": "^19.0.2",
"toxiproxy-node-client": "^2.0.6"
}
}