-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.21 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.21 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "thread-tasker",
"author": "Jefferson Gibin",
"version": "1.0.1",
"description": "Simplify handling asynchronous tasks with ease. Easily manage task execution with Worker Threds.",
"main": "lib/index.js",
"module": "lib/index.m.js",
"unpkg": "lib/index.umd.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"start": "node ./lib/index.js",
"lint": "eslint --ext .ts .",
"unit:test": "jest --maxWorkers 2 .",
"test:watch": "jest --watch",
"prepush": "npm run build && npm run lint && npm run unit:test",
"patch:version": "npm version patch -m 'Bump patch version to %s'",
"minor:version": "npm version minor -m 'Bump minor version to %s'",
"major:version": "npm version major -m 'Bump major version to %s'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JeffersonGibin/thread-tasker.git"
},
"homepage": "https://github.com/JeffersonGibin/thread-tasker#readme",
"keywords": [
"asynchronous",
"async",
"multithreading",
"task management",
"performance",
"scalability",
"concurrency",
"parallel",
"efficiency",
"task execution",
"thread management"
],
"license": "MIT",
"dependencies": {
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.4.0",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.4.3",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
},
"bugs": {
"url": "https://github.com/JeffersonGibin/thread-tasker/issues"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(ts|js)$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node",
"moduleDirectories": [
"node_modules"
]
}
}