-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.53 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
{
"name": "pino-lombokish",
"version": "1.1.3",
"description": "Utility Logger Package which allows faster logger bootstrapping and usage",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MotorolaSolutions/pino-lombokish.git"
},
"keywords": [
"pino",
"lombok",
"typescript"
],
"scripts": {
"test": "jest --ci --coverage",
"build": "rimraf build && npm run compile",
"compile": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"lint": "tslint --project tsconfig.json"
},
"devDependencies": {
"@types/hapi__joi": "^15.0.4",
"@types/jest": "^24.0.18",
"@types/node": "^12.7.9",
"@types/pino": "^5.8.10",
"@types/pino-http": "^4.3.1",
"gts": "^1.1.0",
"husky": "^3.0.8",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-junit": "^8.0.0",
"lint-staged": "^9.4.1",
"pino-pretty": "^3.2.1",
"prettier": "^1.18.2",
"prettier-tslint": "^0.4.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
"tslint": "^5.20.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.6.3"
},
"dependencies": {
"@hapi/joi": "^15.1.1",
"node-watch": "^0.6.3",
"pino": "^5.13.4",
"pino-http": "^4.3.0",
"reflect-metadata": "^0.1.13"
},
"peerDependencies": {
"@types/pino": "^5.8.9",
"@types/pino-http": "^4.0.3",
"pino-pretty": "^3.2.1"
},
"jest": {
"testEnvironment": "node",
"preset": "ts-jest",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/"
],
"watchPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/build",
"<rootDir>/test_results",
"<rootDir>/coverage"
],
"reporters": [
"default",
"jest-junit"
],
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/build/"
],
"collectCoverageFrom": [
"<rootDir>/src/**/*.ts",
"!<rootDir>/src/**/*.spec.ts",
"!<rootDir>/src/**/index.ts",
"!<rootDir>/src/example/*.ts"
],
"coverageReporters": [
"cobertura",
"lcov"
]
},
"jest-junit": {
"suiteName": "Pino Lombokish",
"outputDirectory": "test_results"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier-tslint fix",
"git add"
],
"src/**/*.{json,md,js}": [
"prettier --write",
"git add"
]
}
}