devkits-json-formatter 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -9
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -33,15 +33,19 @@ jsonfmt '{"test":true}' -m
|
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
36
|
+
## See Also
|
|
37
|
+
|
|
38
|
+
- **[DevKits](https://devkits-tools.surge.sh)** — All 82 free developer tools in one place
|
|
39
|
+
- **[JSON Formatter](https://devkits-tools.surge.sh/tools/json-formatter)** — Format and validate JSON
|
|
40
|
+
- **[Base64 Encoder](https://devkits-tools.surge.sh/tools/base64)** — Encode/decode Base64
|
|
41
|
+
- **[JWT Decoder](https://devkits-tools.surge.sh/tools/jwt-decoder)** — Decode JWT tokens
|
|
42
|
+
- **[UUID Generator](https://devkits-tools.surge.sh/tools/uuid-generator)** — Generate UUIDs
|
|
43
|
+
- **[Hash Generator](https://devkits-tools.surge.sh/tools/hash-generator)** — Create MD5, SHA1, SHA256 hashes
|
|
44
|
+
- **[CSS Tools](https://devkits-tools.surge.sh/tools/css-tools)** — CSS minifier, formatter, validator
|
|
45
|
+
- **[HTML Tools](https://devkits-tools.surge.sh/tools/html-tools)** — HTML formatter, minifier
|
|
46
|
+
- **[URL Tools](https://devkits-tools.surge.sh/tools/url-encode)** — URL encode/decode, parse
|
|
47
|
+
- **[Color Converter](https://devkits-tools.surge.sh/tools/color-converter)** — Convert HEX, RGB, HSL colors
|
|
48
|
+
- **[Regex Tester](https://devkits-tools.surge.sh/tools/regex-tester)** — Test and debug regular expressions
|
|
45
49
|
|
|
46
50
|
## License
|
|
47
51
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devkits-json-formatter",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Format and validate JSON from CLI or stdin — pretty print, minify, and validate JSON files",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"bin": {
|
|
@@ -11,13 +11,17 @@
|
|
|
11
11
|
"test": "node test.js"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
|
+
"devkits",
|
|
14
15
|
"json",
|
|
15
16
|
"formatter",
|
|
16
17
|
"validator",
|
|
17
18
|
"cli",
|
|
18
19
|
"pretty-print",
|
|
19
20
|
"minify",
|
|
20
|
-
"developer-tools"
|
|
21
|
+
"developer-tools",
|
|
22
|
+
"online tools",
|
|
23
|
+
"browser tools",
|
|
24
|
+
"free tools"
|
|
21
25
|
],
|
|
22
26
|
"author": "DevKits Team <devkits-auto@protonmail.com>",
|
|
23
27
|
"license": "MIT",
|