-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.33 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
{
"name": "jsondepth",
"version": "2.0.5",
"description": "A small command-line tool to parse JSON and log it with the desired object depth",
"main": "/bin/jsondepth",
"files": [
"lib",
"bin"
],
"bin": {
"jsondepth": "./bin/jsondepth",
"jd": "./bin/jsondepth"
},
"scripts": {
"lint": "eslint --config .eslintrc bin/* lib test",
"lint:fix": "eslint --fix --config .eslintrc bin/* lib test",
"prepublishOnly": "npm run lint && npm test",
"postpublish": "git push --tags",
"test": "mocha",
"update-toc": "./scripts/update_toc"
},
"keywords": [
"json",
"ndjson",
"parse",
"inspect",
"depth",
"cli"
],
"author": "maxlath",
"license": "MIT",
"dependencies": {
"commander": "^7.2.0",
"split": "^1.0.1"
},
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"git-hooks": "^1.1.10",
"mocha": "^7.0.0",
"should": "^13.2.3"
},
"engines": {
"node": ">= 8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxlath/jsondepth.git"
},
"bugs": {
"url": "https://github.com/maxlath/jsondepth/issues"
},
"homepage": "https://github.com/maxlath/jsondepth#readme"
}