This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
84 lines (84 loc) · 2.64 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
{
"name": "cosmas",
"version": "3.3.4",
"description": "Cosmas is a pino-based logger for all your writing needs",
"main": "./dist/index.js",
"scripts": {
"build": "tsc --strict --noImplicitReturns --noUnusedLocals --noUnusedParameters",
"lint-staged": "lint-staged",
"test": "NODE_ENV= jest",
"test-watch": "NODE_ENV= jest --watch",
"test:debug": "NODE_ENV= node --trace-warnings ./node_modules/.bin/jest --runInBand",
"test:coverage": "npm run test -- --collectCoverage",
"test:coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "tslint -p . --force --format codeFrame",
"pretty": "prettier --parser typescript --write 'src/*.ts'",
"prepublishOnly": "npm run build",
"clean": "rm -rf ./node_modules && npm i && npm t",
"semantic-release": "semantic-release",
"prepare": "husky install",
"changelog": "gitmoji-changelog"
},
"author": "Michal Vlasák <michal.vlasak@ackee.cz>",
"contributors": [
"Michal Vlasák <michal.vlasak@ackee.cz>",
"Jaroslav Šmolík <grissius@gmail.com>"
],
"license": "ISC",
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "https://github.com/AckeeCZ/cosmas"
},
"dependencies": {
"@types/express": "^4.17.14",
"cls-hooked": "^4.2.2",
"lodash.clonedeep": "^4.5.0",
"lodash.foreach": "^4.5.0",
"lodash.isempty": "^4.4.0",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.merge": "^4.6.2",
"omit-deep": "^0.3.0",
"on-finished": "^2.4.1",
"on-headers": "^1.0.2",
"pick-deep": "^1.0.0",
"pino": "^8.6.0"
},
"peerDependencies": {
"@sentry/node": "^7.3.3"
},
"devDependencies": {
"@sentry/node": "7.15.0",
"@types/cls-hooked": "^4.3.3",
"@types/jest": "^29.0.3",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.foreach": "^4.5.7",
"@types/lodash.isempty": "^4.4.7",
"@types/lodash.isobject": "^3.0.7",
"@types/lodash.isstring": "^4.0.7",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.7.18",
"@types/on-finished": "^2.3.1",
"@types/on-headers": "^1.0.0",
"@types/supertest": "^2.0.12",
"coveralls": "^3.1.1",
"express": "^4.18.1",
"gitmoji-changelog": "^2.3.0",
"husky": "^8.0.1",
"jest": "^29.0.3",
"jest-extended": "^3.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"semantic-release-gitmoji": "^1.4.4",
"supertest": "^6.2.4",
"ts-jest": "^29.0.1",
"tslint": "^6.0.0",
"tslint-config-ackee": "^0.3.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.3"
}
}