-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.23 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
86
87
88
89
90
91
92
93
94
95
{
"name": "@node-ts/bus-redis",
"description": "A redis transport adapter for @node-ts/bus-core.",
"version": "0.1.8",
"license": "MIT",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "github:node-ts/bus-redis.git",
"scripts": {
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.json --declaration",
"build:watch": "yarn run build --incremental --watch --preserveWatchOutput",
"lint": "tslint --project tsconfig.json 'src/**/*.ts'",
"lint:fix": "yarn lint --fix",
"test": "jest --collect-coverage"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@node-ts/bus-messages": "^0.3.2",
"esbuild": "^0.13.12",
"esbuild-jest": "^0.5.0",
"ioredis": "^4.27.7",
"jest": "^27.3.1",
"modest-queue": "^0.5.0",
"tslib": "^1.9.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"@node-ts/bus-core": "^1.0.4",
"@node-ts/bus-test": "^0.0.16",
"@node-ts/code-standards": "^0.0.10",
"@types/faker": "^4.1.5",
"@types/ioredis": "^4.26.6",
"@types/jest": "^27.0.2",
"@types/uuid": "^3.4.4",
"faker": "^4.1.0",
"reflect-metadata": "^0.1.13",
"typemoq": "^2.1.0",
"typescript": "^4.3.5"
},
"peerDependencies": {
"@node-ts/bus-core": "^1.0.4"
},
"keywords": [
"esb",
"redis",
"typescript",
"enterprise integration patterns",
"bus",
"messaging",
"microservices",
"distributed systems",
"framework",
"enterprise framework",
"CQRS",
"ES",
"NServiceBus",
"Mule ESB"
],
"jest": {
"testTimeout": 5000,
"setupFilesAfterEnv": [
"<rootDir>/test/setup.ts"
],
"collectCoverageFrom": [
"**/*.ts",
"!**/node_modules/**",
"!**/vendor/**",
"!**/dist/**",
"!**/bus-messages/**",
"!**/error/*"
],
"testRegex": "(src\\/.+\\.|/)(integration|spec)\\.ts$",
"transform": {
"^.+\\.tsx?$": [
"esbuild-jest",
{
"sourcemap": true,
"loaders": {
".spec.ts": "tsx",
".integration.ts": "tsx"
}
}
]
},
"testEnvironment": "node",
"testPathIgnorePatterns": [
"node_modules/",
"dist/",
"bus-test/"
]
}
}