-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 802 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 802 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
{
"name": "json-stringify-pretty-compact",
"version": "4.0.0",
"author": "Simon Lydell",
"license": "MIT",
"description": "The best of both `JSON.stringify(obj)` and `JSON.stringify(obj, null, indent)`.",
"type": "module",
"exports": "./index.js",
"types": "index.d.ts",
"repository": "lydell/json-stringify-pretty-compact",
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"JSON",
"stringify",
"pretty",
"print",
"pretty-print",
"compact",
"indent",
"format",
"formatter"
],
"scripts": {
"test": "eslint . --report-unused-disable-directives && prettier --check . && node --test",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@eslint/js": "9.7.0",
"eslint": "9.7.0",
"prettier": "3.3.3"
}
}