-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
127 lines (127 loc) · 3.08 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "pino-lambda",
"version": "4.4.1",
"description": "Pino destination formatter for AWS Lambda",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/FormidableLabs/pino-lambda.git",
"files": [
"/README.md",
"/dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"lint": "eslint --ext .ts ./src",
"prebuild": "yarn clean",
"pretest:e2e": "yarn clean && yarn build",
"test": "yarn test:unit",
"test:unit": "tap --ts src/**/*.spec.ts",
"test:debug": "yarn test:unit --node-arg=--inspect-brk --timeout 600",
"test:e2e": "node ./dist/test.js",
"semantic-release": "semantic-release"
},
"keywords": [
"pino",
"lambda",
"logging",
"cloudwatch"
],
"author": "Charles Brown <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/FormidableLabs/pino-lambda#readme",
"url": "https://github.com/FormidableLabs/pino-lambda/issues",
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@tsconfig/node12": "^1.0.7",
"@types/node": "12",
"@types/pino": "^6.0.0",
"@types/sinon": "^9.0.10",
"@types/tap": "^15.0.7",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"pino": "^8.0.0",
"pino-pretty": "^9.1.0",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"semantic-release": "^21.0.2",
"sinon": "^9.2.2",
"tap": "^16.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.1.3"
},
"peerDependencies": {
"pino": ">=6.0.0"
},
"publishConfig": {
"provenance": true
},
"prettier": {
"arrowParens": "always",
"endOfLine": "auto",
"printWidth": 100,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"jest"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier",
"prettier/@typescript-eslint"
]
},
"release": {
"branches": [
"master",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}