-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.54 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.54 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "taskforce-connector",
"version": "1.37.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.47.0",
"chalk": "^4.1.0",
"commander": "^12.1.0",
"ioredis": "^5.4.1",
"latest-version": "^9.0.0",
"lodash": "^4.17.21",
"semver": "^7.7.1",
"ws": "^8.17.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@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": "^30.2.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "tsc",
"test": "jest",
"start": "node app.js",
"prepare": "npm run build",
"remediate:relax": "osv-scanner fix --strategy=relax -M package.json -L package-lock.json && yarn install"
},
"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"
]
},
"jest": {
"testEnvironment": "node"
},
"overrides": {
"brace-expansion": "2.0.2",
"npm": "11.6.1",
"glob": "10.5.0"
},
"resolutions": {
"brace-expansion": "2.0.2",
"glob": "10.5.0",
"js-yaml": "^4.1.0"
},
"packageManager": "yarn@1.22.22"
}