-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.37 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
51
52
53
54
55
56
{
"name": "dripping-bucket",
"version": "1.2.0",
"description": "Library to calculate delays for operations running against rate-limited services",
"main": "dist/bucket.js",
"scripts": {
"lint": "eslint lib/*.js",
"test": "jest lib/*.spec.js",
"build": "npm run lint && npm run test && babel lib --out-dir dist --source-root lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salsita/dripping-bucket.git"
},
"engines": {
"node": ">=10.0.0"
},
"keywords": [
"leaky",
"bucket",
"rate",
"limit",
"leaky-bucket",
"rate-limit",
"rate-limiter",
"client",
"delay",
"amqp",
"rabbitmq",
"es2015"
],
"author": "Roman Kaspar <[email protected]> (https://salsitasoft.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/salsita/dripping-bucket/issues"
},
"homepage": "https://github.com/salsita/dripping-bucket#readme",
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.0",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.1",
"eslint-plugin-standard": "4.1.0",
"jest": "26.6.3"
},
"dependencies": {
"lodash": "^4.17.15"
},
"jest": {
"testEnvironment": "node"
}
}