-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 776 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 776 Bytes
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
{
"name": "pretty-json-log",
"version": "1.5.0",
"bin": {
"pjl": "pjl.js"
},
"type": "module",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"build": "tsc --pretty",
"lint": "eslint . --fix --ignore-path .gitignore",
"test": "npm run build && node --test"
},
"repository": {
"url": "https://github.com/blacha/pretty-json-log"
},
"keywords": [],
"author": "Blayne Chard",
"license": "MIT",
"description": "",
"devDependencies": {
"@linzjs/style": "^4.2.0",
"@types/node": "^20.3.2",
"@types/split2": "^4.2.0"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"split2": "^4.2.0"
},
"files": [
"build/src",
"pjl.js"
]
}