-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.06 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
54
55
56
57
58
59
60
61
62
63
{
"name": "@mixmaxhq/promise-pool",
"version": "3.0.0",
"description": "Concurrent control of functions on a per-pool basis with async/await",
"main": "./dist/node/index.js",
"scripts": {
"ci": "npm run lint && npm test",
"lint": "eslint . && tsc --noEmit",
"prepublishOnly": "npm run build && if [ \"$CI\" = '' ] && [ \"$npm_config_dry_run\" != true ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"test": "jest",
"report": "jest --coverage --maxWorkers 4",
"build": "rm -rf dist/ && tsc",
"semantic-release": "SEMANTIC_COMMITLINT_SKIP=517e18d,06b81a8 semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/mixmaxhq/promise-pool.git"
},
"keywords": [
"async",
"await",
"backpressure",
"iteration",
"pool",
"pressure",
"promise"
],
"files": [
"index.js",
"src",
"dist"
],
"author": "Eli Skeggs <[email protected]> (https://eliskeggs.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/promise-pool/issues"
},
"homepage": "https://github.com/mixmaxhq/promise-pool#readme",
"dependencies": {
"events": "^3.3.0",
"promise-callbacks": "^3.0.0",
"semver": "^5.4.1"
},
"devDependencies": {
"@mixmaxhq/prettier-config": "^1.0.0",
"@mixmaxhq/semantic-release-config": "^2.0.3",
"@mixmaxhq/ts-config": "^1.2.1",
"@types/node": "^22.7.4",
"@types/jest": "^28.1.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^3.4.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^28.1.3",
"jest-junit": "^12.3.0",
"prettier": "^2.8.8",
"semantic-release": "^17.4.7",
"typescript": "^4.9.5",
"ts-jest": "^28.0.8"
}
}