-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
{
"name": "moleculer-typed-proxy",
"version": "1.0.4",
"description": "Moleculer proxy to use typed calls ",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"posttest": "npm run eslint",
"eslint": "eslint './src/**/*.ts'",
"eslint:fix": "eslint --fix './src/**/*.ts'",
"prepack": "rm -rf dist && tsc -b tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"jest-cli": "^25.1.0",
"moleculer": "^0.14.21",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"author": "Denis Bezrukov <anthrax63@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/anthrax63/moleculer-typed-proxy.git"
},
"dependencies": {
"@anthrax63/moleculer-service-decorators": "^1.0.9",
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"moleculer": ">=0.14.21"
},
"keywords": [
"moleculer",
"typescript",
"decorators",
"proxy",
"broker"
]
}