-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.46 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
{
"name": "bullmq-otel",
"version": "1.0.1",
"description": "OpenTelemetry add-on for BullMQ",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"source": "./src/index.ts",
"scripts": {
"build": "tsc && tsc -p tsconfig-cjs.json",
"dry-run": "npm publish --dry-run",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taskforcesh/bullmq-otel.git"
},
"keywords": [
"telemetry",
"opentelemetry",
"otel",
"bullmq"
],
"author": "BullForce Labs AB",
"license": "MIT",
"bugs": {
"url": "https://github.com/taskforcesh/bullmq-otel/issues"
},
"homepage": "https://github.com/taskforcesh/bullmq-otel#readme",
"files": [
"dist"
],
"dependencies": {
"@opentelemetry/api": "^1.9.0",
"bullmq": "^5.22.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.1.0",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"tslib": "^2.8.0",
"typedoc": "^0.26.6",
"typescript": "^5.5.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"message": "*\\[python\\]*",
"release": false
}
]
}
],
"@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",
"docs/gitbook/api/**"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}