-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
{
"name": "munia-pretty-json",
"version": "0.2.2",
"description": "Convert the JSON log into readable form with command line.",
"repository": {
"type": "git",
"url": "https://github.com/gagan-bansal/munia-pretty-json"
},
"main": "./lib/index.js",
"scripts": {
"test-cli": "tap --no-cov ./test/cli-test.js",
"test-pretty": "tap --no-cov --no-color ./test/pretty-test.js",
"test": "npm run test-pretty && npm run test-cli"
},
"bin": {
"munia-pretty-json": "./lib/cli.js"
},
"keywords": [
"munia",
"json",
"log",
"viewer",
"pretty",
"table"
],
"author": "Gagan Bansal",
"license": "MIT",
"dependencies": {
"boolean": "^3.1.4",
"chalk": "^4.1.1",
"dayjs": "^1.10.7",
"get-value": "^3.0.1",
"hsl-to-hex": "^1.0.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"object-path": "^0.11.8",
"parse-int": "^1.0.3",
"split": "^1.0.1",
"string-argv": "^0.3.1",
"table": "^6.7.2"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"cross-spawn": "^7.0.3",
"jsonfile": "^6.1.0",
"sinon": "^11.1.2",
"tap": "^15.0.10"
}
}