json-sort-cli 2.0.3 → 2.0.7
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 -20
- package/LICENSE +1 -1
- package/package.json +16 -18
package/CHANGELOG.md
CHANGED
|
@@ -3,26 +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.3 (2021-11-02)
|
|
7
|
-
|
|
8
|
-
### Bug Fixes
|
|
9
|
-
|
|
10
|
-
- bump TS and separate ESLint plugins away from this monorepo ([b1ebce1](https://github.com/codsen/codsen/commit/b1ebce1637d8c41c2d848fc24b0ba4058865bd5d))
|
|
11
|
-
|
|
12
|
-
### Features
|
|
13
|
-
|
|
14
|
-
- migrate to ES Modules ([c579dff](https://github.com/codsen/codsen/commit/c579dff3b23205e383035ca10ddcec671e35d0fe))
|
|
15
|
-
|
|
16
|
-
### BREAKING CHANGES
|
|
17
|
-
|
|
18
|
-
- programs now are in ES Modules and won't work with Common JS require()
|
|
19
|
-
|
|
20
|
-
## 2.0.1 (2021-09-13)
|
|
21
|
-
|
|
22
|
-
### Bug Fixes
|
|
23
|
-
|
|
24
|
-
- bump TS and separate ESLint plugins away from this monorepo ([2e07d42](https://github.com/codsen/codsen/commit/2e07d424222b6ffedf5fb45c83ad453627ec2904))
|
|
25
|
-
|
|
26
6
|
## 2.0.0 (2021-09-09)
|
|
27
7
|
|
|
28
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.7",
|
|
4
4
|
"description": "Command line app to deep sort JSON files, retains package.json special key order",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"app",
|
|
@@ -32,7 +32,8 @@
|
|
|
32
32
|
"sortjson": "cli.js"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
|
-
"
|
|
35
|
+
"build": "echo 'skip build step for a CLI'",
|
|
36
|
+
"ci_test": "npm run format && tap --no-only --reporter=silent",
|
|
36
37
|
"clean_cov": "../../scripts/leaveCoverageTotalOnly.js",
|
|
37
38
|
"dev": "echo\"\"",
|
|
38
39
|
"devunittest": "npm run dev && tap --only -R 'base'",
|
|
@@ -42,15 +43,12 @@
|
|
|
42
43
|
"prettier": "../../node_modules/prettier/bin-prettier.js '*.{js,css,scss,vue,md,ts}' --write --loglevel silent",
|
|
43
44
|
"republish": "npm publish || :",
|
|
44
45
|
"tap": "tap",
|
|
45
|
-
"test": "npm run
|
|
46
|
-
"
|
|
46
|
+
"test": "npm run test:ci",
|
|
47
|
+
"test:ci": "npm run lint && npm run unittest && npm run format",
|
|
48
|
+
"unittest": "tap --no-only --reporter=terse"
|
|
47
49
|
},
|
|
48
50
|
"tap": {
|
|
49
51
|
"check-coverage": false,
|
|
50
|
-
"coverage-report": [
|
|
51
|
-
"json-summary",
|
|
52
|
-
"text"
|
|
53
|
-
],
|
|
54
52
|
"node-arg": [
|
|
55
53
|
"--no-warnings",
|
|
56
54
|
"--experimental-loader",
|
|
@@ -72,33 +70,33 @@
|
|
|
72
70
|
}
|
|
73
71
|
},
|
|
74
72
|
"dependencies": {
|
|
75
|
-
"ast-monkey-traverse": "^3.0.
|
|
73
|
+
"ast-monkey-traverse": "^3.0.7",
|
|
76
74
|
"chalk": "^4.1.2",
|
|
77
75
|
"fs-extra": "^10.0.0",
|
|
78
76
|
"globby": "^12.0.2",
|
|
79
77
|
"is-d": "^1.0.0",
|
|
80
78
|
"lodash.isplainobject": "^4.0.6",
|
|
81
|
-
"meow": "^10.1.
|
|
79
|
+
"meow": "^10.1.2",
|
|
82
80
|
"p-filter": "^3.0.0",
|
|
83
81
|
"p-reduce": "^3.0.0",
|
|
84
|
-
"sort-package-json": "^1.
|
|
82
|
+
"sort-package-json": "^1.53.1",
|
|
85
83
|
"sorted-object": "^2.0.1",
|
|
86
84
|
"update-notifier": "^5.1.0"
|
|
87
85
|
},
|
|
88
86
|
"devDependencies": {
|
|
89
87
|
"@istanbuljs/esm-loader-hook": "^0.1.2",
|
|
90
88
|
"@types/lodash.isplainobject": "^4.0.6",
|
|
91
|
-
"core-js": "^3.19.
|
|
89
|
+
"core-js": "^3.19.2",
|
|
92
90
|
"cross-env": "^7.0.3",
|
|
93
|
-
"eslint": "^8.
|
|
94
|
-
"execa": "^
|
|
95
|
-
"lect": "^0.18.
|
|
96
|
-
"p-map": "^5.
|
|
97
|
-
"tap": "^15.
|
|
91
|
+
"eslint": "^8.3.0",
|
|
92
|
+
"execa": "^6.0.0",
|
|
93
|
+
"lect": "^0.18.7",
|
|
94
|
+
"p-map": "^5.3.0",
|
|
95
|
+
"tap": "^15.1.5",
|
|
98
96
|
"tempy": "^2.0.0",
|
|
99
97
|
"tslib": "^2.3.1"
|
|
100
98
|
},
|
|
101
99
|
"engines": {
|
|
102
|
-
"node": ">=
|
|
100
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
103
101
|
}
|
|
104
102
|
}
|