-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
59 lines (59 loc) · 1.36 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
58
59
{
"name": "jfq",
"version": "1.2.11",
"description": "JSONata on the command line",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"build": "rollup -c && chmod a+x ./bin/jfq.js",
"lint": "standard --verbose --fix",
"posttest": "ls -1 *.md | xargs -t -n 1 markdown-link-check",
"prepublishOnly": "npm run build",
"pretest": "npm run lint && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blgm/jfq.git"
},
"author": "George Blue",
"license": "MIT",
"bugs": {
"url": "https://github.com/blgm/jfq/issues"
},
"keywords": [
"jsonata",
"jq",
"cli",
"command",
"json",
"yaml",
"pipe",
"file"
],
"homepage": "https://github.com/blgm/jfq#readme",
"devDependencies": {
"@babel/core": "7.24.3",
"@babel/preset-env": "7.24.3",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "29.7.0",
"jest": "29.7.0",
"markdown-link-check": "3.12.1",
"regenerator-runtime": "0.14.1",
"rollup": "2.79.1",
"rollup-plugin-babel": "4.4.0",
"standard": "17.1.0"
},
"dependencies": {
"commander": "^11.1.0",
"file-exists": "^5.0.1",
"fs-readfile-promise": "^3.0.1",
"js-yaml": "^4.1.0",
"json-colorizer": "^2.2.2",
"jsonata": "^2.0.4",
"read-input": "^0.3.1"
},
"bin": "bin/jfq.js"
}