-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 919 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 919 Bytes
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
{
"name": "@ejfkdev/async-pool",
"version": "1.0.0",
"description": "JS asynchronous parallel pool",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": "./dist/cjs/index.js",
"./utils": "./dist/cjs/utils.js"
},
"scripts": {
"dev": "father dev",
"build": "father build",
"build:deps": "father prebundle",
"prepublishOnly": "father doctor && npm run build",
"test": "jest"
},
"keywords": [
"async",
"await",
"pool",
"parallel",
"concurrency",
"promise"
],
"files": [
"dist"
],
"author": "ejfkdev",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.12",
"father": "^4.4.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"ts-jest": "^29.1.2"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@babel/runtime": "^7.23.9"
}
}