-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
47
48
49
50
51
52
53
{
"name": "clamped-promise-all",
"version": "1.1.0",
"description": "Executes an array of promises with a max number of parallel executions.",
"main": "dist/clampedPromiseAll.js",
"types": "dist/clampedPromiseAll.d.ts",
"files": ["dist/*", "src/*"],
"scripts": {
"prepublishOnly": "tsc",
"test": "mocha"
},
"mocha": {
"spec": "test/clampedPromiseAll.test.ts",
"extension": [
"ts"
],
"require": [
"ts-node/register"
],
"timeout": 200000
},
"repository": {
"type": "git",
"url": "git+https://github.com/shaunpersad/clamped-promise-all.git"
},
"keywords": [
"node",
"parallel",
"promise",
"promise all",
"rate limit",
"queue",
"cloudflare workers"
],
"author": "Shaun Persad <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shaunpersad/clamped-promise-all/issues"
},
"homepage": "https://github.com/shaunpersad/clamped-promise-all#readme",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.30",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^9.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}