generated from codex-team/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 908 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
{
"name": "live-limit",
"version": "1.1.0",
"description": "A promise based generic rate limiter. Runs a limited number of async function calls at a time, queuing or discarding remaining calls.",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/SeriousBug/live-limit.git",
"author": "Kaan Barmore-Genc <kaan@bgenc.net>",
"license": "MIT",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint:test": "eslint ./src",
"lint": "eslint ./src --fix",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^28.1.0",
"@types/node": "^17.0.39",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"codecov": "^3.8.3",
"eslint": "^8.17.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.4",
"ts-node": "^10.8.1",
"typedoc": "^0.22.17",
"typescript": "^4.7.3"
}
}