-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 896 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 896 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
42
43
44
{
"name": "jsonclip",
"version": "1.0.0",
"description": "Zero-config JSON formatter and inspector for your clipboard data",
"main": "index.js",
"bin": {
"jsonclip": "index.js"
},
"scripts": {
"test": "node test.js"
},
"keywords": [
"json",
"formatter",
"pretty-print",
"cli",
"clipboard",
"validation",
"inspector"
],
"author": "BootKode Technologies <ava@bootkode.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ava-bootkode/jsonclip.git"
},
"homepage": "https://github.com/ava-bootkode/jsonclip#readme",
"bugs": {
"url": "https://github.com/ava-bootkode/jsonclip/issues"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"chalk": "^4.1.2",
"clipboardy": "^4.0.0"
},
"devDependencies": {},
"os": [
"darwin",
"linux",
"win32"
]
}