-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 878 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
{
"name": "rate-limit-tester",
"version": "1.0.0",
"description": "Progressive rate-limit tester built with Node.js.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theDanielJLewis/rate-limit-tester.git"
},
"keywords": [
"nodejs",
"rate-limit",
"test",
"performance"
],
"author": "Daniel J. Lewis",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/theDanielJLewis/rate-limit-tester/issues"
},
"homepage": "https://github.com/theDanielJLewis/rate-limit-tester#readme",
"dependencies": {
"async": "^3.1.0",
"bottleneck": "^2.19.5",
"progress": "^2.0.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"yargs": "^15.0.2"
}
}