-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.66 KB
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
57
58
59
{
"name": "api-request-buffer",
"version": "0.1.6",
"description": "A lightweight library to buffer multiple requests to an API and send them in a single request.",
"main": "lib/index.js",
"author": "Nicolas Schmidt",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/cli": "^7.28.0",
"@babel/core": "^7.28.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.13",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.18.0",
"babel-jest": "^30.0.5",
"eslint": "^8.57.1",
"eslint-plugin-jest": "^29.0.1",
"jest": "^29.7.0",
"source-map-support": "^0.5.21",
"typedoc": "^0.28.5",
"typescript": "^5.8.3"
},
"dependencies": {
"debug": "^4.4.1"
},
"scripts": {
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"build": "npm run build:types && npm run build:js",
"test": "jest --config=jest.config.js",
"type-check:watch": "npm run type-check --watch",
"type-check": "tsc --noEmit",
"typedoc": "typedoc",
"prepack": "node ../../common/prepublish-script.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/nsc-de/JsTools.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"rate",
"clock",
"rateclock",
"api",
"limit",
"ratelimit",
"promise",
"library",
"lightweight"
]
}