-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 3 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
{
"name": "@morgan-stanley/message-broker",
"version": "1.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 ./coverage ../install ../build ../packages ./reports",
"copy-definitions-to-dist": "copyfiles -u 1 \"./main/**/*.d.ts\" ./dist",
"test": "karma start --singleRun --browsers ChromeHeadlessNoSandbox",
"posttest": "npm run lint",
"lint": "eslint -c .eslintrc.js --ext .ts,.js .",
"lint-fix": "eslint -c .eslintrc.js --ext .ts,.js . --fix",
"watch-test": "karma start",
"watch-build": "tsc --watch",
"build-tsc": "tsc -p tsconfig.json",
"build": "npm run build-tsc && npm run copy-definitions-to-dist && typedoc main/index.ts",
"prebuild-release": "npm run clean",
"build-release": "npm run build"
},
"repository": {
"type": "git"
},
"peerDependencies": {
"rxjs": "^7.8.1"
},
"devDependencies": {
"@jsdevtools/coverage-istanbul-loader": "^3.0.5",
"@morgan-stanley/ts-mocking-bird": "^1.1.3",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.1.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.7.0",
"acorn": "^8.7.0",
"ajv": "^8.12.0",
"chromedriver": "^130.0.4",
"circular-dependency-plugin": "^5.2.2",
"concurrently": "^9.0.1",
"copyfiles": "^2.4.1",
"core-js": "^3.15.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^12.0.0",
"event-hooks-webpack-plugin": "^2.2.0",
"istanbul-instrumenter-loader": "^2.0.0",
"jasmine": "^5.2.0",
"jasmine-core": "^5.1.1",
"karma": "^6.3.4",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-webpack": "^5.0.0",
"prettier": "^2.4.1",
"puppeteer": "^23.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^6.0.1",
"rxjs": "^7.8.1",
"source-map": "^0.7.4",
"ts-loader": "^9.2.3",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typedoc": "^0.26.2",
"typescript": "^5.2.2",
"webpack": "^5.44.0"
},
"dependencies": {
"@morgan-stanley/needle": "^0.3.13",
"uuid": "^11.0.3"
}
}