-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.21 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": "pjs-tool",
"version": "1.2.2",
"description": "An awk-like command-line tool for processing text, CSV, JSON, HTML, and XML.",
"directories": {
"bin": "./bin",
"doc": "./doc",
"lib": "./lib",
"man": "./man",
"test": "./test"
},
"author": "Bruno Garcia <[email protected]>",
"license": "ISC",
"homepage": "https://github.com/aduros/pjs",
"bugs": "https://github.com/aduros/pjs/issues",
"repository": {
"type": "git",
"url": "https://github.com/aduros/pjs.git"
},
"keywords": [
"shell",
"cli",
"pipe",
"awk",
"jq",
"sort",
"cut",
"sed",
"grep",
"wc",
"uniq",
"csv",
"json",
"html",
"xml"
],
"scripts": {
"prepack": "make prepack",
"prepublishOnly": "make prepublish",
"test": "test/run"
},
"dependencies": {
"JSONStream": "^1.3.5",
"acorn": "^8.0.4",
"ast-types": "^0.14.2",
"astring": "^1.6.0",
"commander": "^7.0.0",
"css-select": "^3.1.2",
"csv-parse": "^4.14.2",
"domutils": "^2.4.4",
"estraverse": "^5.2.0",
"htmlparser2": "^6.0.0",
"jq-in-the-browser": "^0.7.2"
},
"devDependencies": {
"webpack": "^5.16.0",
"webpack-cli": "^4.4.0"
}
}