-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 746 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 746 Bytes
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
{
"name": "request-limiter",
"version": "1.3.0",
"description": "Limits promises execution in order to reduce load.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"test": "npx mocha ./tests/index.js"
},
"author": "demid.mosko@gmail.com",
"license": "ISC",
"devDependencies": {
"@types/node": "^10.12.12",
"mocha": "^5.2.0",
"randomstring": "^1.1.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"dependencies": {
"debug": "^4.1.1"
},
"repository": {
"type": "git",
"url": "git@github.com:djomaa/request-limiter.git"
},
"keywords": [
"request",
"promise",
"limiter",
"limit"
]
}