-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.32 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
{
"name": "@topcli/pretty-json",
"version": "1.3.0",
"description": "Stdout JSON in your terminal",
"main": "./index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"prepublishOnly": "pkg-ok",
"test": "node --test test/test.js",
"coverage": "codecov",
"doc": "jsdoc -c ./jsdoc.json -r -R ./README.md -P ./package.json --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopCli/Pretty-JSON.git"
},
"keywords": [
"pretty",
"json",
"beautiful",
"format",
"stdout",
"terminal"
],
"files": [
"index.js",
"index.d.ts",
"src/utils.js"
],
"author": "GENTILHOMME Thomas <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TopCli/Pretty-JSON/issues"
},
"homepage": "https://github.com/TopCli/Pretty-JSON#readme",
"dependencies": {
"@slimio/is": "^2.0.0",
"kleur": "^4.1.5"
},
"devDependencies": {
"@escommunity/minami": "^1.0.0",
"@nodesecure/eslint-config": "^1.7.0",
"codecov": "^3.7.0",
"eslint": "^8.32.0",
"jsdoc": "^4.0.2"
},
"engines": {
"node": ">=16"
}
}