forked from boringnode/bus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.94 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
{
"name": "@rlanz/bus",
"version": "0.2.0",
"description": "",
"engines": {
"node": ">=20.11.1"
},
"main": "build/index.js",
"type": "module",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./drivers/*": "./build/drivers/*.js",
"./types/*": "./build/src/types/*.js"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "del-cli build",
"format": "prettier --write .",
"lint": "eslint . --ext=.ts",
"prepublishOnly": "npm run build",
"release": "npx release-it",
"update:toc": "npx doctoc README.md",
"test": "c8 node --loader ts-node/esm --enable-source-maps bin/test.ts"
},
"dependencies": {
"@paralleldrive/cuid2": "^2.2.2",
"@poppinss/utils": "^6.7.2",
"object-hash": "^3.0.0"
},
"devDependencies": {
"@adonisjs/eslint-config": "^1.2.1",
"@adonisjs/prettier-config": "^1.2.1",
"@adonisjs/tsconfig": "^1.2.1",
"@japa/assert": "^2.1.0",
"@japa/expect-type": "^2.0.1",
"@japa/runner": "^3.1.1",
"@swc/core": "^1.4.0",
"@testcontainers/redis": "^10.7.1",
"@types/object-hash": "^3.0.6",
"c8": "^9.1.0",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ioredis": "^5.3.2",
"prettier": "^3.2.5",
"release-it": "^17.1.1",
"ts-node": "^10.9.2",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"author": "Romain Lanz <[email protected]>",
"license": "MIT",
"keywords": [],
"prettier": "@adonisjs/prettier-config",
"eslintConfig": {
"extends": "@adonisjs/eslint-config/package"
},
"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
}
}
}