-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 753 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 753 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
{
"name": "jsonlint-tree",
"version": "2.0.1",
"description": "JSON lint a directory recursively",
"main": "index.js",
"bin": {
"jsonlint-tree": "./index.js"
},
"files": [
"index.js"
],
"engines": {
"node": ">=18.17"
},
"keywords": [
"json",
"lint",
"cli",
"validation"
],
"repository": {
"type": "git",
"url": "https://github.com/educastellano/jsonlint-tree.git"
},
"bugs": {
"url": "https://github.com/educastellano/jsonlint-tree/issues"
},
"homepage": "https://github.com/educastellano/jsonlint-tree#readme",
"author": "Eduard Castellano",
"license": "ISC",
"scripts": {
"test": "echo \"No tests configured\""
},
"dependencies": {
"jsonlint": "^1.6.2"
}
}