-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
57 lines (57 loc) · 1.43 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
{
"name": "@supercharge/promise-pool",
"description": "Map-like, concurrent promise processing for Node.js",
"version": "3.2.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/superchargejs/promise-pool/issues"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~3.0.1",
"@supercharge/tsconfig": "~4.0.0",
"c8": "~8.0.1",
"eslint": "~8.57.0",
"expect": "~29.7.0",
"typescript": "~5.4.3",
"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"
},
"sideEffects": false,
"types": "dist"
}