-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
58 lines (58 loc) · 1.87 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
{
"name": "@node-ts/bus",
"version": "0.0.3",
"main": "index.js",
"description": "A service bus for message-based, distributed node applications",
"repository": "github:node-ts/bus.git",
"license": "MIT",
"private": true,
"scripts": {
"build": "pnpm run --recursive build",
"build:watch": "pnpm run --recursive build:watch",
"clean": "pnpm run --recursive clean && rm -r node_modules",
"format": "prettier --ignore-path .gitignore --write --config .prettierrc.js . \"!**/*.(yml|yaml|mdx)\"",
"format:check": "prettier --ignore-path .gitignore --check --config .prettierrc.js . \"!**/*.(yml|yaml|mdx)\"",
"format:precommit": "lint-staged",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"test": "dotenv -e test.env -- jest --collect-coverage",
"test:unit": "dotenv -e test.env -- jest \"(src\\/.+\\.|/)spec\\.ts$\"",
"test:integration": "dotenv -e test.env -- jest --runInBand \"bus-(core).*(src\\/.+\\.|/)integration\\.ts$\"",
"test:watch": "dotenv -e test.env -- jest --watch"
},
"keywords": [
"typescript",
"enterprise service bus",
"distributed system",
"message bus",
"message queue",
"node"
],
"engines": {
"pnpm": "^9.6.0",
"node": ">=20.12.2"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.11",
"dotenv-cli": "^4.0.0",
"esbuild": "^0.20.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prettier-plugin-organize-imports": "^3.2.2",
"reflect-metadata": "^0.1.13",
"supports-color": "^9.0.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4"
},
"lint-staged": {
"*.(ts|tsx|js|md|css|html|json)": "prettier --ignore-path .gitignore --write --config .prettierrc.js"
}
}