-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 935 Bytes
/
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
{
"name": "@jsware/jsonpath-cli",
"version": "1.1.0",
"description": "Command-Line Interface for the jsonpath-plus library",
"main": "bin/jpp",
"scripts": {
"start": "node bin/jpp --help",
"test": "test/jpp.test.sh",
"version": "auto-changelog -p && git add CHANGELOG.md"
},
"author": "John Scott",
"bugs": {
"url": "https://github.com/jsware/jsonpath-cli/issues"
},
"homepage": "https://www.jsware.io/jsonpath-cli",
"keywords": [
"json",
"jsonpath",
"jsonpath-plus"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jsware/jsonpath-cli.git"
},
"preferGlobal": true,
"bin": {
"jpp": "./bin/jpp"
},
"files": [
"LICENSE",
"bin/jpp"
],
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"commander": "^8.2.0",
"jsonpath-plus": "^6.0.1"
},
"devDependencies": {
"auto-changelog": "^2.3.0"
}
}