-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.29 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
{
"name": "nodejs-threads",
"version": "1.1.0",
"description": "A very simple functiobn based implementation of node.js worker threads",
"main": "lib/index.js",
"scripts": {
"build": "tsc --build",
"build:dev": "tsc --watch",
"prepublish": "npm run build",
"test": "npm run build && jest --config jest.config.js",
"test:dev": "jest --config jest.config.js --watchAll",
"docs": "jsdoc2md --files src/**/*.ts --configure ./jsdoc2md.json > API.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/karankraina/nodejs-threads.git"
},
"keywords": [
"nodejs",
"npm",
"worker",
"threads"
],
"author": "Karan Raina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/karankraina/nodejs-threads/issues"
},
"homepage": "https://github.com/karankraina/nodejs-threads#readme",
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-object-rest-spread": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@types/node": "^17.0.5",
"jest": "^27.4.5",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^7.1.0",
"typescript": "^4.5.4"
}
}