-
Notifications
You must be signed in to change notification settings - Fork 122
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 765 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 765 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
{
"name": "json",
"description": "a 'json' command for massaging and processing JSON on the command line",
"version": "11.0.0",
"repository": {
"type": "git",
"url": "git://github.com/trentm/json.git"
},
"author": "Trent Mick <trentm@gmail.com> (https://trentm.com)",
"main": "./lib/json.js",
"files": [
"lib",
"man"
],
"man": [
"./man/man1/json.1"
],
"bin": {
"json": "./lib/json.js"
},
"scripts": {
"test": "tap test/*.test.js"
},
"engines": {
"node": ">=10"
},
"keywords": [
"json",
"jsontool",
"filter",
"command",
"shell"
],
"devDependencies": {
"async": "^3.2.0",
"ben": "0.0.x",
"semver": "^7.3.2",
"tap": "^15.0.5",
"uglify-js": "^3.10.2"
}
}