-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
45
46
47
48
49
50
51
52
{
"name": "nodeswarm",
"version": "0.0.1",
"description": "Lightweight library for managing worker threads and parallel execution of tasks in Node.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/mdwekat/nodeswarm.git",
"bugs": {
"url": "https://github.com/mdwekat/nodeswarm/issues"
},
"homepage": "https://github.com/mdwekat/nodeswarm#readme",
"scripts": {
"build": "rimraf dist && tsc",
"pretest": "rimraf test_tmp && tsc -p tsconfig.worker.json",
"posttest": "rimraf test_tmp",
"test": "jest",
"prepublishOnly": "npm run build"
},
"keywords": [
"thread",
"worker",
"parallel",
"concurrency",
"pool",
"task"
],
"author": "Mustafa Dwaikat <mudwekat@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.7.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"<rootDir>/test/**/*.test.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx"
],
"testTimeout": 30000
}
}