-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
79 lines (79 loc) · 1.94 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": "moleculer-decorators",
"version": "1.3.0",
"description": "decorators for moleculer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rimraf dist/*",
"tsc": "tsc",
"lint": "tslint -p tsconfig.json",
"compile": "npm run clean && tsc && node dist/index.js",
"dev": "nodemon --delay 2000 -e ts --exec \"npm run compile\"",
"test": "jest --coverage --forceExit --detectOpenHandles",
"preversion": "npm run lint && npm run tsc && npm run test",
"postversion": "git push && git push --follow-tags"
},
"author": "Colonelbundy <colonelbundy@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ColonelBundy/moleculer-decorators.git"
},
"keywords": [
"microservices",
"microservice",
"decorator",
"es6",
"typescript",
"moleculer"
],
"bugs": {
"url": "https://github.com/ColonelBundy/moleculer-decorators/issues"
},
"homepage": "https://github.com/ColonelBundy/moleculer-decorators#readme",
"dependencies": {
"moleculer": "^0.14.0"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^12.12.26",
"@types/supertest": "^2.0.8",
"jest": "^24.9.0",
"moleculer-db": "^0.8.5",
"moleculer-web": "^0.9.1",
"nodemon": "^2.0.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"supertest": "^4.0.2",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.5"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./services",
"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"
]
}
}