-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.55 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
{
"name": "pino-transport-ecs",
"version": "1.0.1",
"description": "A Pino transform transport that converts logs to the Elastic Common Schema format, using the official formatters from Elastic.",
"main": "dist/index.js",
"scripts": {
"build": "tsc -b tsconfig.dist.json",
"dev": "NODE_ENV=development ergol tests/application/app.ts -c ergol.config.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "npm run test:unit && npm run test:types",
"test:unit": "jest --runInBand",
"test:types": "tsc -p tsconfig.dist.json --noEmit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@elastic/ecs-pino-format": "^1.5.0",
"pino-abstract-transport": "^2.0.0",
"serialize-error": "^8.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.12",
"@types/lint-staged": "^13.3.0",
"@types/node": "^22.5.2",
"cz-conventional-changelog": "^3.3.0",
"ergol": "^1.0.2",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-kuzzle": "^0.0.13",
"husky": "^9.1.5",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"pino": "^9.3.2",
"prettier": "^3.3.3",
"semantic-release-config-kuzzle": "^1.0.0",
"semantic-release-slack-bot": "^4.0.2",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"files": [
"dist/"
]
}