-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.88 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
68
{
"name": "node-fork-queue",
"version": "0.1.9",
"description": "A queue for node.js that uses child processes (child_process.fork()). This queue uses Pools for child-process because it takes time to spawn new child-process.",
"author": "Ha Nguyen <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/hanguyen-it/node-fork-queue.git"
},
"contributors": [
{
"name": "Ha Nguyen",
"email": "[email protected]",
"url": "https://github.com/hanguyen-it"
},
{
"name": "Phong Nguyen",
"url": "https://github.com/phongnt"
},
{
"name": "Nam Nguyen",
"email": "[email protected]"
}
],
"license": "MIT",
"main": "dist/index.js",
"scripts": {
"test-basic": "nodemon examples/basic/MainProcess.js --exec babel-node",
"test-stop": "nodemon examples/basic/StopMainProcess.js --exec babel-node",
"build": "babel src -d dist",
"prepublish": "npm run build"
},
"dependencies": {
"generic-pool": "^3.7.1",
"redis": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
"@babel/preset-env": "^7.12.10",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.2.0",
"eslint-watch": "^7.0.0",
"jest": "^26.6.3",
"mock-fs": "^4.13.0",
"nodemon": "^2.0.6",
"prettier": "^2.2.1",
"redis-mock": "^0.55.0"
},
"keywords": [
"child_process",
"child_process.fork()",
"fork queue",
"fork pool",
"fork",
"queue",
"typescript",
"nodejs"
]
}