-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 KB
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
{
"name": "@sameke/task-container",
"version": "3.0.0",
"description": "Node task runner. Allows user to create and run Node tasks in separate process.",
"main": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "git add . && git commit -m \"prepare publish\" && npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weagle08/task-container.git"
},
"keywords": [
"node-task",
"task",
"thread",
"threads",
"threading",
"process",
"child_process",
"tasker",
"worker",
"worker_farm",
"worker-farm",
"node-worker",
"tasking",
"tasker",
"multi-thread",
"multi-threading",
"async/await",
"async",
"await",
".net",
"task-pattern"
],
"author": "weagle08",
"license": "MIT",
"bugs": {
"url": "https://github.com/weagle08/task-container/issues"
},
"homepage": "https://github.com/weagle08/task-container#readme",
"devDependencies": {
"@types/chai": "4.3.3",
"@types/mocha": "9.1.1",
"@types/node": "18.7.6",
"chai": "4.3.6",
"mocha": "10.0.0",
"ts-node": "10.9.1",
"typescript": "4.7.4"
}
}