-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.06 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
{
"name": "moleculer-plus",
"version": "0.0.1",
"description": "Typescript decorators for Moleculer",
"license": "MIT",
"private": false,
"author": "Ish",
"keywords": [
"typescript",
"decorators",
"moleculer",
"plus",
"microservices"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ishfx/moleculer-plus.git"
},
"bugs": {
"url": "https://github.com/ishfx/moleculer-plus/issues"
},
"homepage": "https://github.com/ishfx/moleculer-plus#readme",
"scripts": {
"clean": "rimraf ./dist",
"build": "tsc --build tsconfig.build.json",
"test": "jest"
},
"dependencies": {
"moleculer": "^0.14.23",
"moleculer-web": "^0.10.4",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^29.4.1",
"@types/node": "^18.15.3",
"dotenv": "^16.0.3",
"jest": "^29.5.0",
"rimraf": "^4.4.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}