-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "promax",
"version": "3.1.0",
"description": "A promise limiting/concurrency library that allows you to control how many promises are run at any given time.",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"release": "standard-version --sign",
"release:no-sign": "standard-version",
"release:dry-run": "standard-version --dry-run",
"build": "rimraf dist && tsc",
"prepublish": "npm run build",
"test:ci": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/entrostat/promax.git"
},
"keywords": [
"async",
"await",
"concurrency",
"limit",
"limited",
"max",
"maximum",
"promise",
"promises",
"rate",
"rate-limit",
"ratelimit",
"throttle"
],
"author": "Kerren Ortlepp",
"license": "MIT",
"bugs": {
"url": "https://github.com/entrostat/promax/issues"
},
"homepage": "https://github.com/entrostat/promax#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.9.2",
"jest": "^27.2.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"rxjs": "^7.3.0"
}
}