-
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) · 800 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 800 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": "@kldzj/stream-throttle",
"version": "1.1.1",
"description": "Throttle one or multiple stream(s) to a maximum rate",
"keywords": [
"stream",
"throttle"
],
"main": "dist/index.js",
"files": [
"dist/**/*"
],
"repository": "https://github.com/kldzj/stream-throttle",
"bugs": "https://github.com/kldzj/stream-throttle/issues",
"author": "kldzj <npm@kldzj.dev>",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "tsc",
"prebuild": "rimraf dist",
"prepublishOnly": "yarn build && yarn test"
},
"devDependencies": {
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"jest": "^28.1.0",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"dependencies": {
"limiter": "^2.1.0"
}
}