-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
106 lines (106 loc) · 2.47 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "taskforce-connector",
"version": "1.35.0",
"description": "Connects queues to Taskforce",
"preferGlobal": true,
"engine": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "./dist/index.js",
"source": "lib/index.ts",
"bin": {
"taskforce": "app.js"
},
"files": [
"dist"
],
"dependencies": {
"bull": "^4.15.1",
"bullmq": "^5.34.10",
"bullmq-v3": "npm:bullmq@^3.16.2",
"bullmq-v4": "npm:bullmq@^4.18.2",
"bullmq-v5": "npm:bullmq@^5.34.10",
"chalk": "^4.1.0",
"commander": "^12.1.0",
"ioredis": "^5.4.1",
"latest-version": "^9.0.0",
"lodash": "^4.17.21",
"semver": "^7.6.2",
"ws": "^8.17.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.1",
"@semantic-release/npm": "^7.1.1",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/bull": "^3.15.8",
"@types/chalk": "^2.2.0",
"@types/lodash": "^4.17.6",
"@types/node": "^20.10.5",
"@types/semver": "^7.5.8",
"@types/ws": "^6.0.1",
"jest": "^29.7.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"test": "jest",
"start": "node app.js",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taskforcesh/taskforce-connector.git"
},
"keywords": [
"taskforce",
"bull",
"queue"
],
"author": "Taskforce.sh Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/taskforcesh/taskforce-connector/issues"
},
"homepage": "https://github.com/taskforcesh/taskforce-connector#readme",
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"yarn.lock",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"jest": {
"testEnvironment": "node"
}
}