forked from supercharge/promise-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "@supercharge/promise-pool",
"description": "Map-like, concurrent promise processing for Node.js",
"version": "2.4.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/superchargejs/promise-pool/issues"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~2.3.3",
"@supercharge/tsconfig": "~1.0.0",
"c8": "~7.12.0",
"eslint": "~8.33.0",
"expect": "~28.1.3",
"typescript": "~4.9.5",
"uvu": "~0.5.6"
},
"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 test:coverage",
"test:full": "npm run build && npm run lint && npm run test:coverage",
"test:run": "uvu",
"test:coverage": "c8 --include=dist npm run test:run && npm run test:report",
"test:report": "c8 report --reporter=html"
},
"types": "dist"
}