-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "@button/divvy",
"version": "1.7.1",
"description": "Redis-backed rate limit service.",
"main": "index.js",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/button/divvy"
},
"scripts": {
"benchmark": "node ./bin/benchmark.js",
"start": "node index.js examples/example-config.ini",
"test": "mocha --recursive tests/"
},
"author": "mike wakerly <[email protected]>",
"license": "MIT",
"devDependencies": {
"@button/divvy-client": "^1.0.0",
"assert-diff": "^2.0.3",
"eslint": "^6.7.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-button-platform": "^1.0.4",
"eslint-plugin-mocha": "^6.2.2",
"mocha": "^6.2.2",
"mocha-eslint": "^6.0.0",
"sinon": "^7.5.0"
},
"dependencies": {
"carrier": "^0.3.0",
"debug": "^4.1.1",
"ini": "^1.3.4",
"prom-client": "^11.5.3",
"redis": "^2.8.0",
"statsd-client": "^0.4.4"
}
}