forked from lydell/json-stringify-pretty-compact
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 853 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 853 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
{
"name": "@aitodotai/json-stringify-pretty-compact",
"version": "1.3.0",
"author": "Simon Lydell and Aito Intelligence",
"license": "MIT",
"description": "The best of both `JSON.stringify(obj)` and `JSON.stringify(obj, null, indent)`.",
"main": "index.js",
"repository": "AitoDotAI/json-stringify-pretty-compact",
"files": [
"index.js",
"index.d.ts"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"JSON",
"stringify",
"pretty",
"print",
"pretty-print",
"compact",
"indent",
"format",
"formatter"
],
"scripts": {
"lint": "standard",
"unit": "mocha --ui tdd",
"test": "npm run lint && npm run unit",
"publish": "np --no-yarn"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.1.0",
"np": "^4.0.2",
"standard": "^10.0.3"
}
}