-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 1.96 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
{
"name": "@wnqueiroz/ecs-winston",
"version": "1.0.3",
"description": "A formatter for the winston logger compatible with Elastic Common Schema (ECS) 🚀",
"author": "William Queiroz <wnqueiroz@outlook.com>",
"license": "MIT",
"main": "dist/lib/index.js",
"typings": "dist/@types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/wnqueiroz/ecs-winston.git"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc -p tsconfig.build.json",
"build:watch": "npm run build -- --watch",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint \"{src,__tests__}/**/*.ts\" --fix",
"prepare": "husky install",
"release": "standard-version -t \"\"",
"commit": "cz"
},
"keywords": [
"winston",
"serializer",
"formatter",
"elasticsearch",
"ecs",
"ecs-logging",
"elastic",
"common",
"schema"
],
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.2",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.unset": "^4.5.6",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import-helpers": "^1.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.0",
"jest": "^27.2.4",
"lint-staged": ">=10",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3",
"winston": "^3.3.3"
},
"dependencies": {
"fast-json-stringify": "^2.7.10",
"lodash.merge": "^4.6.2",
"lodash.unset": "^4.5.2",
"qs": "^6.10.1"
},
"peerDependencies": {
"winston": "^3.x"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}