-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.19 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": "extract-jsonpaths",
"description": "CLI tool to extract JSONPath(s) from a JSON object or JSON Schema.",
"version": "2.0.2",
"keywords": [
"json",
"jsonpath",
"jsonschema",
"schema",
"cli",
"extract"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alex-massa/extract-jsonpaths.git"
},
"license": "MIT",
"author": {
"name": "Alex Massa"
},
"funding": {
"type": "individual",
"url": "http://paypal.me/alexmassa97"
},
"bin": {
"extract-jsonpaths": "extract-jsonpaths.js"
},
"exports": {
"./utils": "./utils/json-paths-utils.js",
"./lib": "./lib/json-paths-tree.js"
},
"files": [
"./extract-jsonpaths.js",
"./utils/json-paths-utils.js",
"./lib/json-paths-tree.js",
"./package.json",
"./README.md",
"./LICENSE.txt"
],
"scripts": {
"start": "node extract-jsonpaths.js",
"test": "mocha"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.7.2",
"commander": "^12.1.0",
"get-stdin": "^9.0.0"
},
"devDependencies": {
"chai": "^5.1.2",
"mocha": "^10.8.2",
"postject": "^1.0.0-alpha.6"
},
"engines": {
"node": ">=22.7.0"
}
}