-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 990 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 990 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
45
46
47
{
"name": "@topcli/pretty-json",
"version": "1.0.1",
"description": "Stdout JSON in your terminal",
"main": "./index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"test": "node --test test/**/*.spec.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/TopCli/Pretty-JSON.git"
},
"keywords": [
"pretty",
"json",
"beautiful",
"format",
"stdout",
"print",
"cli",
"terminal"
],
"files": [
"index.js",
"index.d.ts",
"src/utils.js"
],
"author": "GENTILHOMME Thomas <gentilhomme.thomas@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TopCli/Pretty-JSON/issues"
},
"homepage": "https://github.com/TopCli/Pretty-JSON#readme",
"devDependencies": {
"@openally/config.eslint": "^2.2.0"
},
"engines": {
"node": ">=20"
}
}