-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.63 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
{
"name": "@boringnode/bus",
"description": "A simple and lean driver-based service bus implementation",
"version": "0.7.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 && tsc",
"clean": "del-cli build",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"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": "^1.3.0",
"@adonisjs/prettier-config": "^1.4.0",
"@adonisjs/tsconfig": "^1.4.0",
"@japa/assert": "^2.1.0",
"@japa/expect-type": "^2.0.2",
"@japa/runner": "^3.1.4",
"@swc/core": "^1.10.1",
"@testcontainers/hivemq": "^10.16.0",
"@testcontainers/redis": "^10.16.0",
"@types/node": "^20.12.12",
"@types/object-hash": "^3.0.6",
"c8": "^9.1.0",
"del-cli": "^5.1.0",
"eslint": "^8.57.1",
"ioredis": "^5.4.1",
"mqtt": "^5.10.3",
"prettier": "^3.4.2",
"release-it": "^17.10.0",
"testcontainers": "^10.16.0",
"ts-node-maintained": "^10.9.4",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@poppinss/utils": "^6.8.3",
"object-hash": "^3.0.0"
},
"peerDependencies": {
"ioredis": "^5.0.0"
},
"peerDependenciesMeta": {
"ioredis": {
"optional": true
}
},
"author": "Romain Lanz <[email protected]>",
"contributors": [
"Julien Ripouteau <[email protected]>"
],
"license": "MIT",
"keywords": [
"bus",
"transport",
"service bus"
],
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"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": "[email protected]+sha512.3003a14012e2987072d244c720506549c1aab73ee728208f1b2580a9fd67b92d61ba6b08fe93f6dce68fd771e3af1e59a0afa28dd242dd0940d73b95fedd4e90"
}