-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
65 lines (65 loc) · 1.34 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
{
"name": "moleculer-service-decorators",
"version": "1.0.4",
"description": "Typescript decorators for Moleculer",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tslint --project ."
},
"keywords": [
"typescript",
"moleculer",
"microservice",
"decorators"
],
"repository": {
"type": "github",
"url": "https://github.com/rmccallum81/moleculer-service-decorators"
},
"author": "Ryan McCallum",
"license": "MIT",
"devDependencies": {
"@types/bluebird": "^3.5.33",
"@types/jest": "^26.0.6",
"@types/node": "^14.14.10",
"jest": "^26.1.0",
"moleculer": "^0.13.13",
"ts-jest": "^26.0.0",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typescript": "^4.0.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [],
"testRegex": "(\\/tests\\/(.*\\/)?.*(test|spec)\\.tsx?)$",
"testPathIgnorePatterns": [
"/lib/",
"/node_modules/"
],
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"moleculer": ">=0.12.1"
},
"types": "./dist/index.d.ts",
"files": [
"dist"
]
}