-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 933 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 933 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
39
40
41
42
43
{
"name": "jpath-cli",
"version": "0.1.0",
"description": "Query and extract data from JSON with a simple, powerful path syntax. A focused zero-dependency CLI — jq's little sibling for the 90% case.",
"license": "MIT",
"author": "takeaseatventure",
"keywords": [
"json",
"query",
"jq",
"path",
"extract",
"cli",
"filter",
"transform",
"jpath"
],
"homepage": "https://github.com/takeaseatventure/jpath-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/takeaseatventure/jpath-cli.git"
},
"bin": {
"jpath": "./bin/jpath.js"
},
"files": [
"bin/",
"lib/",
"test/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test test/*.test.js",
"demo": "node bin/jpath.js --demo"
},
"bugs": {
"url": "https://github.com/takeaseatventure/jpath-cli/issues"
}
}