-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.51 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.51 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
{
"name": "runmq",
"type": "module",
"version": "1.4.0",
"description": "RunMQ is a high-performance message queue library for Node.js, built on top of RabbitMQ’s rock-solid messaging guarantees.",
"keywords": [
"queues",
"jobs",
"message-bus",
"rabbitmq",
"event-driven-architecture",
"microservices",
"background-jobs"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup src/index.ts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test:unit": "jest tests/unit",
"test:e2e": "jest tests/e2e",
"test:coverage": "jest --coverage"
},
"_moduleAliases": {
"@": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/runmq/queue.git"
},
"author": "https://github.com/iifawzi",
"license": "MIT",
"bugs": {
"url": "https://github.com/runmq/queue/issues"
},
"homepage": "https://github.com/runmq/queue#readme",
"devDependencies": {
"@eslint/js": "^9.29.0",
"@faker-js/faker": "^9.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.4",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/release-notes-generator": "^11.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.29.0",
"jest": "^30.0.3",
"patch-package": "^8.0.1",
"semantic-release": "^24.2.0",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.0"
},
"dependencies": {
"ajv": "8.18.0",
"rabbitmq-client": "^5.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/github",
{
"assets": [
{
"path": "dist.zip",
"label": "Distribution"
}
]
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}