jjpwrgem 0.5.1 → 0.5.3
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/binary.js +6 -7
- package/install.js +1 -1
- package/npm-shrinkwrap.json +188 -642
- package/package.json +38 -44
- package/run-jjp.js +1 -1
- package/.gitignore +0 -2
- package/CHANGELOG.md +0 -118
- /package/{readme.md → README.md} +0 -0
package/package.json
CHANGED
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"
|
|
3
|
-
"
|
|
4
|
-
"bin": {
|
|
5
|
-
"jjp": "run-jjp.js"
|
|
6
|
-
},
|
|
7
|
-
"dependencies": {
|
|
8
|
-
"axios": "^1.12.2",
|
|
9
|
-
"axios-proxy-builder": "^0.1.2",
|
|
10
|
-
"console.table": "^0.10.0",
|
|
11
|
-
"detect-libc": "^2.1.2",
|
|
12
|
-
"rimraf": "^6.0.1"
|
|
13
|
-
},
|
|
2
|
+
"name": "jjpwrgem",
|
|
3
|
+
"version": "0.5.3",
|
|
14
4
|
"description": "jjpwrgem json parser with really good error messages",
|
|
15
|
-
"devDependencies": {
|
|
16
|
-
"prettier": "^3.6.2"
|
|
17
|
-
},
|
|
18
|
-
"engines": {
|
|
19
|
-
"node": ">=14",
|
|
20
|
-
"npm": ">=6"
|
|
21
|
-
},
|
|
22
|
-
"glibcMinimum": {
|
|
23
|
-
"major": 2,
|
|
24
|
-
"series": 35
|
|
25
|
-
},
|
|
26
|
-
"homepage": "https://github.com/20jasper/jjpwrgem",
|
|
27
5
|
"keywords": [
|
|
28
6
|
"command-line-utilities",
|
|
29
7
|
"text-processing",
|
|
@@ -33,15 +11,32 @@
|
|
|
33
11
|
"json",
|
|
34
12
|
"linter"
|
|
35
13
|
],
|
|
14
|
+
"homepage": "https://github.com/20jasper/jjpwrgem",
|
|
36
15
|
"license": "MIT",
|
|
37
|
-
"
|
|
38
|
-
"
|
|
16
|
+
"author": "Jacob Asper <jacobasper191@gmail.com>",
|
|
17
|
+
"main": "",
|
|
18
|
+
"bin": {
|
|
19
|
+
"jjp": "run-jjp.js"
|
|
20
|
+
},
|
|
39
21
|
"repository": "https://github.com/20jasper/jjpwrgem",
|
|
40
22
|
"scripts": {
|
|
41
|
-
"fmt": "prettier --write **/*.js",
|
|
42
|
-
"fmt:check": "prettier --check **/*.js",
|
|
43
23
|
"postinstall": "node ./install.js"
|
|
44
24
|
},
|
|
25
|
+
"dependencies": {
|
|
26
|
+
"axios": "^1.12.2",
|
|
27
|
+
"rimraf": "^6.0.1",
|
|
28
|
+
"detect-libc": "^2.1.2",
|
|
29
|
+
"axios-proxy-builder": "^0.1.2"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=14",
|
|
34
|
+
"npm": ">=6"
|
|
35
|
+
},
|
|
36
|
+
"private": false,
|
|
37
|
+
"type": "",
|
|
38
|
+
"artifactDownloadUrl": "https://github.com/20jasper/jjpwrgem/releases/download/jjpwrgem-v0.5.3",
|
|
39
|
+
"preferUnplugged": true,
|
|
45
40
|
"supportedPlatforms": {
|
|
46
41
|
"aarch64-apple-darwin": {
|
|
47
42
|
"artifactName": "jjpwrgem-aarch64-apple-darwin.tar.xz",
|
|
@@ -50,13 +45,6 @@
|
|
|
50
45
|
},
|
|
51
46
|
"zipExt": ".tar.xz"
|
|
52
47
|
},
|
|
53
|
-
"aarch64-pc-windows-msvc": {
|
|
54
|
-
"artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
|
|
55
|
-
"bins": {
|
|
56
|
-
"jjp": "jjp.exe"
|
|
57
|
-
},
|
|
58
|
-
"zipExt": ".zip"
|
|
59
|
-
},
|
|
60
48
|
"aarch64-unknown-linux-gnu": {
|
|
61
49
|
"artifactName": "jjpwrgem-aarch64-unknown-linux-gnu.tar.xz",
|
|
62
50
|
"bins": {
|
|
@@ -71,6 +59,13 @@
|
|
|
71
59
|
},
|
|
72
60
|
"zipExt": ".tar.xz"
|
|
73
61
|
},
|
|
62
|
+
"x86_64-unknown-linux-gnu": {
|
|
63
|
+
"artifactName": "jjpwrgem-x86_64-unknown-linux-gnu.tar.xz",
|
|
64
|
+
"bins": {
|
|
65
|
+
"jjp": "jjp"
|
|
66
|
+
},
|
|
67
|
+
"zipExt": ".tar.xz"
|
|
68
|
+
},
|
|
74
69
|
"x86_64-pc-windows-gnu": {
|
|
75
70
|
"artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
|
|
76
71
|
"bins": {
|
|
@@ -78,24 +73,23 @@
|
|
|
78
73
|
},
|
|
79
74
|
"zipExt": ".zip"
|
|
80
75
|
},
|
|
81
|
-
"
|
|
76
|
+
"aarch64-pc-windows-msvc": {
|
|
82
77
|
"artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
|
|
83
78
|
"bins": {
|
|
84
79
|
"jjp": "jjp.exe"
|
|
85
80
|
},
|
|
86
81
|
"zipExt": ".zip"
|
|
87
82
|
},
|
|
88
|
-
"x86_64-
|
|
89
|
-
"artifactName": "jjpwrgem-x86_64-
|
|
83
|
+
"x86_64-pc-windows-msvc": {
|
|
84
|
+
"artifactName": "jjpwrgem-x86_64-pc-windows-msvc.zip",
|
|
90
85
|
"bins": {
|
|
91
|
-
"jjp": "jjp"
|
|
86
|
+
"jjp": "jjp.exe"
|
|
92
87
|
},
|
|
93
|
-
"zipExt": ".
|
|
88
|
+
"zipExt": ".zip"
|
|
94
89
|
}
|
|
95
90
|
},
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
"
|
|
99
|
-
"npm": "9.5.0"
|
|
91
|
+
"glibcMinimum": {
|
|
92
|
+
"major": 2,
|
|
93
|
+
"series": 35
|
|
100
94
|
}
|
|
101
95
|
}
|
package/run-jjp.js
CHANGED
package/.gitignore
DELETED
package/CHANGELOG.md
DELETED
|
@@ -1,118 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
|
-
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
-
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
## [0.5.1](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.5.1) - 2025-12-14
|
|
11
|
-
|
|
12
|
-
### Added
|
|
13
|
-
|
|
14
|
-
- end of line option
|
|
15
|
-
|
|
16
|
-
## [0.5.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.5.0) - 2025-12-13
|
|
17
|
-
|
|
18
|
-
### Added
|
|
19
|
-
|
|
20
|
-
- preferred width
|
|
21
|
-
|
|
22
|
-
### Documentation
|
|
23
|
-
|
|
24
|
-
- *perf*: npm installation overhead
|
|
25
|
-
- *perf*: add benchmarks docs and include throughput and speed benchmarks
|
|
26
|
-
|
|
27
|
-
### Performance
|
|
28
|
-
- benchmarks for uglification and prettifying with various CLI tools
|
|
29
|
-
|
|
30
|
-
## [0.4.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.4.0) - 2025-12-10
|
|
31
|
-
|
|
32
|
-
### Changed
|
|
33
|
-
|
|
34
|
-
- default prettified indentation is now two spaces
|
|
35
|
-
- non-empty arrays write each item on its own line
|
|
36
|
-
- keep empty objects on a single line
|
|
37
|
-
|
|
38
|
-
### Tests
|
|
39
|
-
|
|
40
|
-
- add coverage for hard-to-format inputs
|
|
41
|
-
- add regression test for deeply nested JSON
|
|
42
|
-
|
|
43
|
-
## [0.3.3](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.3) - 2025-12-09
|
|
44
|
-
|
|
45
|
-
### Fixed
|
|
46
|
-
|
|
47
|
-
- show error message when no input comes to stdin
|
|
48
|
-
|
|
49
|
-
### Performance
|
|
50
|
-
|
|
51
|
-
- only cache successful tokens in TokenStream
|
|
52
|
-
- track count of digits instead of vec of chars
|
|
53
|
-
|
|
54
|
-
## [0.3.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.2) - 2025-12-08
|
|
55
|
-
|
|
56
|
-
### Performance
|
|
57
|
-
|
|
58
|
-
- write delimiters and indentation directly to buffer, avoiding intermediate allocations
|
|
59
|
-
|
|
60
|
-
## [0.3.1](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.1) - 2025-12-08
|
|
61
|
-
|
|
62
|
-
### Performance
|
|
63
|
-
|
|
64
|
-
- avoid using fmt machinery in hot paths, instead pushing directly
|
|
65
|
-
|
|
66
|
-
## [0.3.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.3.0) - 2025-12-08
|
|
67
|
-
|
|
68
|
-
### Added
|
|
69
|
-
|
|
70
|
-
- axolotl logo in version screen
|
|
71
|
-
- consistent key ordering
|
|
72
|
-
|
|
73
|
-
### Deprecated
|
|
74
|
-
|
|
75
|
-
- removed help subcommand
|
|
76
|
-
|
|
77
|
-
### Documentation
|
|
78
|
-
|
|
79
|
-
- autogenerate examples and add examples to subcommands
|
|
80
|
-
- update readme with correct command
|
|
81
|
-
- add xtask to generate readmes
|
|
82
|
-
|
|
83
|
-
### Performance
|
|
84
|
-
|
|
85
|
-
- TokenStream iterator instead of collecting into intermediary Vec
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
## [0.2.2](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.2) - 2025-12-07
|
|
89
|
-
|
|
90
|
-
### Documentation
|
|
91
|
-
|
|
92
|
-
- add mise installer steps
|
|
93
|
-
- update readme with new command format and installation instructions. removes extra notes
|
|
94
|
-
|
|
95
|
-
### Performance
|
|
96
|
-
|
|
97
|
-
- join_into utility to declaritively avoid allocating delimiter strings
|
|
98
|
-
- write to single buffer instead of allocating buffer per JSON value
|
|
99
|
-
- don't use anstream for content without ansi
|
|
100
|
-
|
|
101
|
-
## [0.2.0](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.2.0) - 2025-12-06
|
|
102
|
-
|
|
103
|
-
### Added
|
|
104
|
-
|
|
105
|
-
- subcommands - check and format with uglify flag
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
## [0.1.5](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.1.5) - 2025-12-05
|
|
109
|
-
|
|
110
|
-
Test for publishing flow
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
## [0.1.4](https://github.com/20jasper/JJPWRGEM/releases/tag/jjpwrgem-v0.1.4) - 2025-12-05
|
|
114
|
-
|
|
115
|
-
### Feature
|
|
116
|
-
- pretty format JSON
|
|
117
|
-
- error messages on failure
|
|
118
|
-
|
/package/{readme.md → README.md}
RENAMED
|
File without changes
|