json-sort-cli 2.0.1 → 2.0.5
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/CHANGELOG.md +0 -6
- package/LICENSE +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,12 +3,6 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## 2.0.1 (2021-09-13)
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
- bump TS and separate ESLint plugins away from this monorepo ([2e07d42](https://github.com/codsen/codsen/commit/2e07d424222b6ffedf5fb45c83ad453627ec2904))
|
|
11
|
-
|
|
12
6
|
## 2.0.0 (2021-09-09)
|
|
13
7
|
|
|
14
8
|
### Features
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2010
|
|
3
|
+
Copyright (c) 2010-2021 Roy Revelt and other contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
6
|
a copy of this software and associated documentation files (the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "json-sort-cli",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "Command line app to deep sort JSON files, retains package.json special key order",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -33,6 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"ci_test": "npm run format && tap --no-only --reporter=silent --output-file=testStats.md && npm run clean_cov",
|
|
36
|
+
"clean_cov": "../../scripts/leaveCoverageTotalOnly.js",
|
|
36
37
|
"dev": "echo\"\"",
|
|
37
38
|
"devunittest": "npm run dev && tap --only -R 'base'",
|
|
38
39
|
"format": "npm run lect && npm run prettier && npm run lint",
|
|
@@ -42,8 +43,7 @@
|
|
|
42
43
|
"republish": "npm publish || :",
|
|
43
44
|
"tap": "tap",
|
|
44
45
|
"test": "npm run lint && npm run unittest && npm run format",
|
|
45
|
-
"unittest": "tap --no-only --output-file=testStats.md --reporter=terse && npm run clean_cov"
|
|
46
|
-
"clean_cov": "../../scripts/leaveCoverageTotalOnly.js"
|
|
46
|
+
"unittest": "tap --no-only --output-file=testStats.md --reporter=terse && npm run clean_cov"
|
|
47
47
|
},
|
|
48
48
|
"tap": {
|
|
49
49
|
"check-coverage": false,
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
}
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"ast-monkey-traverse": "^3.0.
|
|
75
|
+
"ast-monkey-traverse": "^3.0.5",
|
|
76
76
|
"chalk": "^4.1.2",
|
|
77
77
|
"fs-extra": "^10.0.0",
|
|
78
78
|
"globby": "^12.0.2",
|
|
@@ -81,20 +81,20 @@
|
|
|
81
81
|
"meow": "^10.1.1",
|
|
82
82
|
"p-filter": "^3.0.0",
|
|
83
83
|
"p-reduce": "^3.0.0",
|
|
84
|
-
"sort-package-json": "^1.
|
|
84
|
+
"sort-package-json": "^1.52.0",
|
|
85
85
|
"sorted-object": "^2.0.1",
|
|
86
86
|
"update-notifier": "^5.1.0"
|
|
87
87
|
},
|
|
88
88
|
"devDependencies": {
|
|
89
89
|
"@istanbuljs/esm-loader-hook": "^0.1.2",
|
|
90
90
|
"@types/lodash.isplainobject": "^4.0.6",
|
|
91
|
-
"core-js": "^3.
|
|
91
|
+
"core-js": "^3.19.1",
|
|
92
92
|
"cross-env": "^7.0.3",
|
|
93
|
-
"eslint": "^
|
|
93
|
+
"eslint": "^8.2.0",
|
|
94
94
|
"execa": "^5.1.1",
|
|
95
|
-
"lect": "^0.18.
|
|
96
|
-
"p-map": "^5.
|
|
97
|
-
"tap": "^15.0.
|
|
95
|
+
"lect": "^0.18.5",
|
|
96
|
+
"p-map": "^5.3.0",
|
|
97
|
+
"tap": "^15.0.10",
|
|
98
98
|
"tempy": "^2.0.0",
|
|
99
99
|
"tslib": "^2.3.1"
|
|
100
100
|
},
|