-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "basic-cluster",
"version": "0.4.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"dependencies": {
"exponential-backoff": "^3.1.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@commitlint/prompt-cli": "^19.3.1",
"@types/jest": "^29.5.11",
"husky": "^9.1.2",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"format": "prettier --write src",
"check-format": "prettier --check src",
"prepare": "husky install",
"commit": "commit"
},
"keywords": [
"lib",
"cluster",
"async",
"parallel"
],
"author": "Tiago Grosso <tiagogrosso99@gmail.com>",
"license": "MIT",
"description": "Run multiple async tasks in parallel",
"repository": {
"type": "git",
"url": "git+https://github.com/TiagoGrosso/ts-basic-cluster.git"
},
"bugs": {
"url": "https://github.com/TiagoGrosso/ts-basic-cluster/issues"
},
"homepage": "https://github.com/TiagoGrosso/ts-basic-cluster#readme"
}