-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 KB
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
{
"name": "json-pretty-parse-cli",
"version": "2.1.0",
"description": "Command line interface to unescape and format JSON data using stringify and parse",
"main": "cli.js",
"scripts": {
"debug": "node --inspect --inspect-brk cli.js",
"test": "node test.js | faucet",
"postversion": "git push && git push --tags",
"pretest": "xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haroun/json-pretty-parse-cli.git"
},
"keywords": [
"json",
"parse",
"stringify",
"unescape"
],
"author": "Harouna Traore",
"license": "MIT",
"bugs": {
"url": "https://github.com/haroun/json-pretty-parse-cli/issues"
},
"homepage": "https://github.com/haroun/json-pretty-parse-cli#readme",
"devDependencies": {
"dedent": "^0.7.0",
"execa": "^5.0.0",
"faucet": "0.0.1",
"tape": "^5.0.1",
"xo": "^0.36.1"
},
"dependencies": {
"get-stdin": "^8.0.0",
"meow": "^8.0.0"
},
"bin": {
"jsonpp": "cli.js"
},
"engines": {
"node": ">=10.0.0"
},
"xo": {
"space": true,
"semicolon": false,
"rules": {
"unicorn/string-content": "off"
}
}
}