-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "client-rate-limiter",
"version": "0.0.10",
"description": "Simple lib to handle client http throttled requests taking advantage of the server rate limit response headers.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "tap \"test/**/*.test.js\"",
"test-ci": "tap \"test/**/*.test.js\" --100 && tsd",
"post-test": "tap --coverage-report=lcov",
"lint": "eslint .",
"tsd": "tsd"
},
"precommit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/francescorivola/client-rate-limiter.git"
},
"bugs": {
"url": "https://github.com/francescorivola/client-rate-limiter/issues"
},
"homepage": "https://github.com/francescorivola/client-rate-limiter#readme",
"keywords": [
"429",
"rate limit"
],
"author": "francescorivola",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.0.0",
"codecov": "^3.7.2",
"eslint": "^8.0.0",
"pre-commit": "^1.2.2",
"tap": "^16.0.0",
"tsd": "^0.31.0"
},
"tsd": {
"directory": "test",
"compilerOptions": {
"esModuleInterop": true
}
}
}