-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 856 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 856 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
{
"name": "multee",
"version": "0.2.4",
"description": "Turn node's multitasking modules, child_process and worker_threads into simple async functions",
"main": "index.js",
"scripts": {
"test": "npx jest",
"dist": "mkdir -p dist && cp src/*.* package.json README.md dist/ && cd dist/ && npm publish"
},
"author": "Rakuraku Jyo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rjyo/multee.git"
},
"homepage": "https://github.com/rjyo/multee",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@types/uuid": "^8.3.0",
"eslint": "^7.15.0",
"jest": "^26.6.3",
"ts-node": "^9.1.1"
},
"dependencies": {
"uuid": "^8.3.2"
},
"keywords": [
"child_process",
"worker_threads",
"task",
"thread",
"process"
]
}