-
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.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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": "node-routine",
"description": "A library to implement Goroutine-Like API with worker threads.",
"version": "0.2.1",
"license": "MIT",
"author": {
"name": "Joway Wang",
"email": "joway.w@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/joway/node-routine.git"
},
"types": "dist/src/index.d.ts",
"main": "dist/src/index.js",
"files": [
"dist/src/"
],
"keywords": [
"nodejs",
"routine",
"goroutine",
"pool",
"worker",
"threads",
"worker_threads"
],
"scripts": {
"bench": "npm run build && jest --detectOpenHandles --verbose --testRegex=./bench/",
"test": "npm run build && jest --detectOpenHandles --verbose",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"doc": "typedoc && cp -r public ./docs/public && cp CNAME ./docs",
"prepublish": "npm run build && npm run doc"
},
"precommit": [
"prettier"
],
"devDependencies": {
"@types/bluebird": "^3.5.26",
"@types/jest": "^24.0.11",
"@types/node": "^12.7.2",
"@types/request": "^2.48.2",
"bluebird": "^3.5.3",
"jest": "^24.5.0",
"jest-localstorage-mock": "^2.4.0",
"microjob": "^0.6.1",
"request-promise": "^4.2.4",
"ts-jest": "^26.2.0",
"tslint-jike-node": "0.0.17",
"typedoc": "^0.15.0",
"typescript": "^3.3.4000"
}
}