-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.66 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
64
65
66
67
{
"name": "parallel-universe",
"version": "6.1.1",
"description": "The set of async flow control structures and promise utils.",
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"sideEffects": false,
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rollup --config && cp package.json README.md LICENSE.txt lib/ && cd lib && npm pkg delete scripts devDependencies",
"clean": "rimraf lib docs coverage",
"test": "jest",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smikhalevski/parallel-universe.git"
},
"keywords": [
"async",
"abort",
"promise",
"repeat",
"timeout",
"sleep",
"delay",
"lock",
"blocker",
"queue",
"concurrency",
"parallel",
"pool",
"thread pool",
"work pool",
"worker",
"pubsub",
"eventbus"
],
"author": "Savva Mikhalevski <smikhalevski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smikhalevski/parallel-universe/issues"
},
"homepage": "https://github.com/smikhalevski/parallel-universe#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"rollup": "^4.16.4",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typedoc-custom-css": "github:smikhalevski/typedoc-custom-css#master",
"typescript": "^5.4.5"
}
}