-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.7 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": "@boringnode/bus",
"description": "A simple and lean driver-based service bus implementation",
"version": "0.9.1",
"repository": {
"type": "git",
"url": "https://github.com/boringnode/bus"
},
"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=@poppinss/ts-exec --enable-source-maps bin/test.ts",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@adonisjs/eslint-config": "^3.1.0",
"@adonisjs/prettier-config": "^1.5.0",
"@adonisjs/tsconfig": "^2.0.0",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/runner": "^5.3.0",
"@poppinss/ts-exec": "^1.4.4",
"@swc/core": "^1.15.43",
"@testcontainers/hivemq": "^12.0.4",
"@testcontainers/redis": "^12.0.4",
"@types/node": "^20.19.43",
"@types/object-hash": "^3.0.6",
"c8": "^11.0.0",
"del-cli": "^7.0.0",
"eslint": "^10.6.0",
"ioredis": "^5.11.1",
"mqtt": "^5.15.2",
"prettier": "^3.9.4",
"release-it": "^20.2.1",
"testcontainers": "^12.0.4",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"dependencies": {
"@paralleldrive/cuid2": "^3.3.0",
"@poppinss/utils": "^7.0.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",
"provenance": true
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
},
"npm": {
"publish": true,
"skipChecks": true
}
},
"packageManager": "yarn@4.17.1+sha512.ccbfabf7d7b6b32075088be9386fb9a2e00bb6887ef07fa56effabc890a56d53da1ccc4128d62db245fcbd3961b236d75335bdf7d5320ed6eafb7588b7ad4697"
}