forked from d0whc3r/moleculer-decorators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 3.13 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "@d0whc3r/moleculer-decorators",
"version": "1.4.1",
"description": "decorators for moleculer",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "yarn eslint --fix",
"dev": "nodemon --delay 2000 -e ts --exec \"npm run compile\"",
"test": "jest --coverage --forceExit --detectOpenHandles",
"format": "pretty-quick \"*.ts\" --write --staged",
"ci": "yarn clean && yarn install",
"clean": "yarn clean:packages",
"clean:packages": "rm -fr yarn.lock package-lock.json dist node_modules",
"preversion": "run-s lint test build",
"postversion": "git push && git push --follow-tags",
"build:clean": "rimraf dist bin",
"build:dist": "rollup -c",
"build:dts": "dts-bundle-generator -o dist/index.d.ts src/index.ts",
"build": "yarn build:clean && run-p build:dts build:dist",
"release": "np"
},
"author": "d0whc3r <d0whc3r@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/d0whc3r/moleculer-decorators.git"
},
"keywords": [
"microservices",
"microservice",
"decorator",
"es6",
"typescript",
"moleculer"
],
"bugs": {
"url": "https://github.com/d0whc3r/moleculer-decorators/issues"
},
"homepage": "https://github.com/d0whc3r/moleculer-decorators#readme",
"dependencies": {
"moleculer": "^0.14.6"
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@rollup/plugin-typescript": "4.1.1",
"@types/jest": "25.2.3",
"@types/node": "14.0.4",
"@types/supertest": "2.0.9",
"@typescript-eslint/eslint-plugin": "2.34.0",
"@typescript-eslint/parser": "2.34.0",
"dts-bundle-generator": "4.3.0",
"eslint": "7.0.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-prettier": "3.1.3",
"eslint-plugin-sonarjs": "0.5.0",
"husky": "4.2.5",
"jest": "26.0.1",
"lint-staged": "10.2.4",
"moleculer-db": "0.8.7",
"moleculer-web": "0.9.1",
"nodemon": "2.0.4",
"np": "^6.2.3",
"npm-run-all": "4.1.5",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"reflect-metadata": "0.1.13",
"rimraf": "3.0.2",
"rollup": "2.10.5",
"rollup-plugin-auto-external": "2.0.0",
"rollup-plugin-esbuild": "1.4.1",
"rollup-plugin-node-builtins": "2.1.2",
"supertest": "4.0.2",
"ts-jest": "26.0.0",
"typescript": "3.9.3"
},
"jest": {
"testEnvironment": "node",
"rootDir": "./test",
"transform": {
".+\\.tsx?$": "ts-jest"
},
"testRegex": ".*\\.(test|spec).(ts|js)$",
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json"
}
},
"setupFiles": [],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix && lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"{src,cli}/**/*.ts": [
"yarn format"
]
}
}