-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.43 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.43 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
{
"name": "@boringnode/bus",
"description": "A simple and lean driver-based service bus implementation",
"version": "0.9.0",
"engines": {
"node": ">=20.6"
},
"main": "build/index.js",
"type": "module",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./transports/*": "./build/src/transports/*.js",
"./test_helpers": "./build/src/test_helpers/index.js",
"./types/*": "./build/src/types/*.js"
},
"scripts": {
"build": "yarn clean && tsup-node",
"clean": "del-cli build",
"format": "prettier --write .",
"lint": "eslint .",
"prepublishOnly": "yarn build",
"release": "yarn dlx release-it",
"update:toc": "yarn dlx doctoc README.md",
"test": "c8 yarn quick:test",
"quick:test": "yarn node --import ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@adonisjs/eslint-config": "^2.1.2",
"@adonisjs/prettier-config": "^1.4.5",
"@adonisjs/tsconfig": "^1.4.1",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/runner": "^5.0.0",
"@swc/core": "^1.15.8",
"@testcontainers/hivemq": "^11.11.0",
"@testcontainers/redis": "^11.11.0",
"@types/node": "^20.17.19",
"@types/object-hash": "^3.0.6",
"c8": "^10.1.3",
"del-cli": "^7.0.0",
"eslint": "^9.39.2",
"ioredis": "^5.9.0",
"mqtt": "^5.14.1",
"prettier": "^3.7.4",
"release-it": "^19.2.3",
"testcontainers": "^11.11.0",
"ts-node-maintained": "^10.9.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@paralleldrive/cuid2": "^3.0.6",
"@poppinss/utils": "^6.10.1",
"object-hash": "^3.0.0"
},
"peerDependencies": {
"ioredis": "^5.0.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
}
},
"author": "Romain Lanz <romain.lanz@pm.me>",
"contributors": [
"Julien Ripouteau <julien@ripouteau.com>"
],
"license": "MIT",
"keywords": [
"bus",
"transport",
"service bus"
],
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
}
},
"packageManager": "yarn@4.12.0"
}