-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "threadwork",
"version": "0.6.0",
"main": "index.js",
"types": "index.d.ts",
"engines": {
"node": ">=12"
},
"keywords": [
"nodejs",
"async",
"promise",
"worker_threads",
"worker",
"thread",
"pool",
"threadpool",
"multi threading",
"typescript",
"fast",
"worker threads",
"thread pool"
],
"scripts": {
"test": "node test.js",
"types": "tsc index.js --declaration --allowJs --emitDeclarationOnly",
"release": "yarn test && yarn types && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm login && npm publish"
},
"repository": "[email protected]:kevlened/threadwork.git",
"author": "Len Boyette <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevlened/threadwork/issues"
},
"dependencies": {
"callsites": "^3.1.0",
"pkg-dir": "^5.0.0"
},
"devDependencies": {
"@types/node": "^14.6.3",
"typescript": "^4.0.2",
"uvu": "^0.3.3"
}
}