-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 2.97 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
{
"name": "pino-princess",
"version": "1.0.0",
"description": "Prettiest Pino Prettifier in all the land",
"keywords": [
"pino",
"pino-pretty",
"ndjson",
"prettifier",
"pino-colada",
"pretty",
"prettify"
],
"homepage": "https://github.com/spence-s/pino-princess",
"bugs": {
"url": "https://github.com/spence-s/pino-pretty/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/spence-s/pino-princess.git"
},
"license": "MIT",
"author": "Spencer Snyder <[email protected]>",
"type": "module",
"main": "dist/index.cjs",
"bin": {
"pino-princess": "./dist/cli.js"
},
"files": [
"dist",
"!dist/test"
],
"scripts": {
"build": "npm run clean && tsc --project tsconfig.build.json",
"build:test": "tsc --project tsconfig.json",
"build:watch": "npm run clean && tsc --project tsconfig.build.json --watch",
"check": "tsc --project ./tsconfig.json",
"clean": "rimraf dist",
"dev": "NODE_NO_WARNINGS=1 node --loader ts-node/esm/transpile-only ./src/index.ts",
"dev:watch": "NODE_NO_WARNINGS=1 node --watch --loader ts-node/esm/transpile-only ./src/index.ts",
"lint": "xo",
"lint:fix": "xo --fix",
"prepare": "husky",
"release": "np",
"test": "npm run build:test && c8 ava",
"test:watch": "ava --watch",
"update": "ncu -i"
},
"xo": {
"parserOptions": {
"project": "./tsconfig.json"
},
"prettier": true,
"rules": {
"unicorn/prefer-module": "off",
"import/extensions": "off",
"n/file-extension-in-import": "off",
"unicorn/no-array-reduce": "off",
"unicorn/prefer-object-from-entries": "off",
"no-negated-condition": "off",
"unicorn/prevent-abbreviations": "off",
"capitalized-comments": "off",
"ava/use-test": "off"
},
"space": true
},
"prettier": {
"plugins": [
"prettier-plugin-packagejson"
]
},
"ava": {
"files": [
"dist/test/**",
"!dist/test/fixtures/**",
"!dist/test/helpers/**"
],
"snapshotDir": "test/snapshots",
"verbose": true
},
"dependencies": {
"chalk": "^5",
"cli-highlight": "^2.1.11",
"cosmiconfig": "^9.0.0",
"date-fns": "^3.6.0",
"json-log-line": "^0.0.2",
"json-stringify-pretty-compact": "^4.0.0",
"meow": "^13.2.0",
"on-exit-leak-free": "^2.1.2",
"pino-abstract-transport": "^2.0.0",
"pretty-ms": "^9",
"pump": "^3.0.0",
"sonic-boom": "^4.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/node": "^22.5.4",
"@types/pump": "^1.1.3",
"ava": "^6.1.3",
"c8": "^10.1.2",
"fixpack": "^4.0.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"np": "^10.0.7",
"pino": "^9.4.0",
"prettier-plugin-packagejson": "^2.5.2",
"strip-ansi": "^7.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"xo": "^0.59.3"
},
"engines": {
"node": ">=18"
}
}