-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.71 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
{
"name": "pino-logfmt",
"version": "0.1.1",
"description": "Logfmt transport for pino",
"main": "./src/transport.js",
"bin": "./src/bin.js",
"typings": "./typings/types.d.ts",
"scripts": {
"test": "TZ=Europe/Paris mocha \"tests/**/*.spec.js\"",
"lint": "standard --fix \"src/**/*.js\" \"tests/**/*.js\"",
"prepare": "husky install",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botflux/pino-logfmt.git"
},
"keywords": [
"pino",
"logfmt"
],
"author": "Victor Mendele",
"license": "MIT",
"bugs": {
"url": "https://github.com/botflux/pino-logfmt/issues"
},
"type": "module",
"homepage": "https://github.com/botflux/pino-logfmt#readme",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@release-it/conventional-changelog": "^8.0.1",
"@types/chai": "^4.3.12",
"@types/logfmt": "^1.2.6",
"@types/mocha": "^10.0.6",
"@types/pump": "^1.1.3",
"chai": "^4.4.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.2",
"mocha": "^10.3.0",
"pino": "^8.19.0",
"release-it": "^17.1.1",
"standard": "^17.1.0",
"ts-node": "^10.9.2",
"typescript": "5.3"
},
"dependencies": {
"case-anything": "^2.1.13",
"commander": "^12.0.0",
"dateformat": "^5.0.3",
"logfmt": "^1.4.0",
"pino-abstract-transport": "^1.1.0",
"pump": "^3.0.0",
"sonic-boom": "^3.8.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"src/**/*.js": [
"standard --fix"
],
"tests/**/*.js": [
"standard --fix"
]
},
"publishConfig": {
"access": "public"
}
}