This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 1.97 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
{
"name": "moleculer-service",
"version": "0.2.4",
"main": "lib/index.js",
"author": {
"name": "Nifty Development, LLC",
"email": "[email protected]",
"url": "https://aniftyco.com"
},
"contributors": [
{
"name": "Josh Manders",
"url": "https://twitter.com/joshmanders"
}
],
"scripts": {
"prepublishOnly": "rimraf lib && tsc",
"build": "tsc",
"test": "jest"
},
"files": [
"lib/"
],
"eslintConfig": {
"extends": "nifty",
"rules": {
"no-restricted-globals": 0,
"@typescript-eslint/ban-ts-ignore": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-empty-interface": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/ban-types": 0
}
},
"prettier": {
"singleQuote": true
},
"jest": {
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testMatch": [
"<rootDir>/tests/**/*.spec.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tests/tsconfig.json"
}
},
"reporters": [
"default"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts"
],
"coverageThreshold": {
"global": {
"functions": 0,
"branches": 0,
"lines": 0
}
}
},
"dependencies": {
"lodash": "^4.17.20",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/jest": "^26.0.10",
"@types/lodash": "^4.14.159",
"@types/node": "^14.0.27",
"eslint": "^7.7.0",
"eslint-config-nifty": "^3.0.0-rc.8",
"jest": "^26.4.0",
"moleculer": "^0.14.9",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
},
"peerDependencies": {
"moleculer": "*"
}
}