-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.87 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.87 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
{
"name": "@morgan-stanley/message-broker",
"version": "2.0.0",
"description": "Framework agnostic messageBroker for decoupled communication.",
"main": "dist/main/index.js",
"types": "dist/main/index.d.ts",
"author": "Morgan Stanley",
"license": "Apache-2.0",
"keywords": [
"messageBroker",
"communication",
"event",
"morgan stanley"
],
"scripts": {
"clean": "rimraf ./dist ./docs ./coverage ../install ../build ../packages ./reports",
"test": "vitest run",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"watch:test": "vitest --watch",
"watch:build": "tsc --watch",
"build:lib": "tsc -p tsconfig.lib.json",
"build:specs": "tsc -p specs/tsconfig.spec.json",
"build": "npm run build:lib && npm run build:specs",
"prebuild:release": "npm run clean",
"build:release": "concurrently npm:build npm:test npm:lint --kill-others-on-fail",
"postbuild:release": "typedoc main/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/morganstanley/message-broker"
},
"peerDependencies": {
"rxjs": "^7.8.1"
},
"devDependencies": {
"@eslint/js": "^9",
"@morgan-stanley/ts-mocking-bird": "^1",
"@vitest/coverage-v8": "^4.0.9",
"concurrently": "^9",
"eslint": "^9",
"eslint-config-prettier": "^10",
"eslint-plugin-prettier": "^5",
"eslint-plugin-simple-import-sort": "^12",
"eslint-plugin-unused-imports": "^4",
"jiti": "^2.6.1",
"rimraf": "^6.0.1",
"typedoc": "^0.28.10",
"typescript": "^5.2",
"typescript-eslint": "^8.46.4",
"vitest": "^4"
},
"dependencies": {
"@morgan-stanley/needle": "^0.3.33",
"uuid": "^13.0.0"
},
"type": "module"
}