-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.69 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.69 KB
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
{
"name": "pino-pretty",
"version": "13.1.3",
"description": "Prettifier for Pino log lines",
"type": "commonjs",
"main": "index.js",
"types": "index.d.ts",
"bin": {
"pino-pretty": "./bin.js"
},
"scripts": {
"ci": "eslint && borp --check-coverage && npm run test-types",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "borp",
"test-types": "tsc && tsd && attw --pack .",
"test:watch": "borp -w --reporter gh",
"test:report": "c8 --reporter html borp"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pinojs/pino-pretty.git"
},
"keywords": [
"pino"
],
"author": "James Sumners <james.sumners@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pinojs/pino-pretty/issues"
},
"homepage": "https://github.com/pinojs/pino-pretty#readme",
"dependencies": {
"colorette": "^2.0.7",
"dateformat": "^4.6.3",
"fast-copy": "^4.0.0",
"fast-safe-stringify": "^2.1.1",
"help-me": "^5.0.0",
"joycon": "^3.1.1",
"minimist": "^1.2.6",
"on-exit-leak-free": "^2.1.2",
"pino-abstract-transport": "^3.0.0",
"pump": "^3.0.3",
"secure-json-parse": "^4.1.0",
"sonic-boom": "^4.2.0",
"strip-json-comments": "^5.0.3"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.1",
"@jsumners/assert-match": "^1.0.0",
"@jsumners/line-reporter": "^1.0.1",
"@types/node": "^25.0.3",
"borp": "^1.0.0",
"eslint": "^9.39.1",
"fastbench": "^1.0.1",
"neostandard": "^0.12.2",
"pino": "^10.1.0",
"rimraf": "^6.1.2",
"semver": "^7.6.0",
"tsd": "^0.33.0",
"typescript": "^5.9.3"
},
"tsd": {
"directory": "./test/types"
}
}