This repository has been archived by the owner on May 2, 2024. It is now read-only.
forked from ColonelBundy/moleculer-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.92 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
{
"name": "@awell-health/moleculer-decorators",
"version": "1.4.2",
"description": "decorators for moleculer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/*",
"tsc": "tsc",
"lint": "eslint",
"compile": "yarn run clean && tsc && node dist/index.js",
"dev": "nodemon --delay 2000 -e ts --exec \"yarn run compile\"",
"test": "jest --coverage --forceExit --detectOpenHandles",
"preversion": "yarn run lint && yarn run tsc"
},
"author": "Colonelbundy <colonelbundy@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/awell-health/moleculer-decorators.git"
},
"keywords": [
"microservices",
"microservice",
"decorator",
"es6",
"typescript",
"moleculer"
],
"bugs": {
"url": "https://github.com/awell-health/moleculer-decorators/issues"
},
"homepage": "https://github.com/awell-health/moleculer-decorators#readme",
"dependencies": {
"@moleculer/channels": "^0.1.8",
"moleculer": "^0.14.32"
},
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^12.12.26",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"eslint": "^8.34.0",
"jest": "^29.7.0",
"moleculer-db": "^0.8.25",
"moleculer-web": "^0.10.7",
"nodemon": "^3.0.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./test",
"roots": [
"../test"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.(test|spec).(ts|js)$",
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
},
"setupFiles": [],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}