forked from supercharge/promise-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "@supercharge/promise-pool",
"description": "Map-like, concurrent promise processing for Node.js",
"version": "1.7.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/superchargejs/promise-pool/issues"
},
"dependencies": {},
"devDependencies": {
"@supercharge/tsconfig": "~1.0.0",
"@types/jest": "~27.0.1",
"@typescript-eslint/eslint-plugin": "~4.30.0",
"eslint": "~7.32.0",
"eslint-config-standard-with-typescript": "~21.0.1",
"eslint-plugin-import": "~2.24.2",
"eslint-plugin-node": "~11.1.0",
"eslint-plugin-promise": "~5.1.0",
"jest": "~27.1.0",
"jest-extended": "~0.11.5",
"typescript": "~4.4.2"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/superchargejs/promise-pool",
"keywords": [
"supercharge",
"superchargejs",
"promise-pool",
"nodejs",
"async",
"map",
"async-map",
"promises"
],
"license": "MIT",
"files": [
"dist"
],
"main": "dist",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/superchargejs/promise-pool.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "jest"
},
"types": "dist"
}