Skip to content

Commit 30f611a

Browse files
committed
fix: Upgrade dependencies
1 parent 8927275 commit 30f611a

File tree

3 files changed

+2147
-482
lines changed

3 files changed

+2147
-482
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Coverage
2929
uses: codecov/codecov-action@v3
3030
- name: Publish
31-
uses: cycjimmy/semantic-release-action@v2
31+
uses: cycjimmy/semantic-release-action@v3
3232
with:
3333
semantic_version: 19
3434
branches: master

package.json

Lines changed: 16 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
},
4141
"scripts": {
4242
"build": "npm run compile:jsonlint && rollup -c && npm run minify && npm run compile:tests",
43-
"compile:jsonlint": "cat.js src/prefix.js.txt src/unicode.js src/custom-parser.js src/pointer.js src/native-parser.js src/configurable-parser.js src/suffix.js.txt > lib/jsonlint.js",
43+
"compile:jsonlint": "cat-j src/prefix.js.txt src/unicode.js src/custom-parser.js src/pointer.js src/native-parser.js src/configurable-parser.js src/suffix.js.txt > lib/jsonlint.js",
4444
"minify": "esbuild --minify --sourcemap --outfile=web/jsonlint.min.js lib/jsonlint.js && esbuild --minify --sourcemap --outfile=web/validator.min.js lib/validator.js && esbuild --minify --sourcemap --outfile=web/formatter.min.js lib/formatter.js && esbuild --minify --sourcemap --outfile=web/sorter.min.js lib/sorter.js && esbuild --minify --sourcemap --outfile=web/printer.min.js lib/printer.js",
45-
"compile:tests": "tsc --moduleResolution node --module es2022 test/types.test.ts && mv.js test/types.test.js test/types.test.mjs",
46-
"test": "denolint && c8 node test/types.test.mjs && c8 --no-clean node test/parse1 && c8 --no-clean node test/parse1 --native-parser && c8 --no-clean node test/parse2 && c8 --no-clean node test/parse3 && c8 --no-clean node test/parse4 && c8 --no-clean node test/parse5 && c8 --no-clean node test/portable && c8 --no-clean node test/tokenize && c8 --no-clean node test/print && c8 --no-clean node lib/cli package.json test/recursive && c8 --no-clean node lib/cli -sq test/passes/hasOwnProperty.json && c8 --no-clean node lib/cli -s -e json-schema-draft-04 -V test/passes/schema-04.json test/passes/data-04.json && c8 --no-clean node lib/cli -s -e json-schema-draft-07 -V test/passes/schema-07.json test/passes/data-07.json && c8 --no-clean node lib/cli -C test/passes/comments.txt && c8 --no-clean node lib/cli -pS test/passes/strings.txt && c8 --no-clean node lib/cli -M json5 test/passes/json5.text && c8 --no-clean node lib/cli -v && c8 --no-clean node lib/cli -h && c8 --no-clean node lib/cli -Pc test/fails/10.json || c8 --no-clean node lib/cli -f test/.jsonrc.yml 'test/**/*.json' '!**/fails' && c8 report",
45+
"compile:tests": "tsc --moduleResolution node --module es2022 test/types.test.ts && mv-j test/types.test.js test/types.test.mjs",
46+
"test": "denolint && c8 node test/types.test.mjs && c8 --no-clean node test/parse1 && c8 --no-clean node test/parse1 --native-parser && c8 --no-clean node test/parse2 && c8 --no-clean node test/parse3 && c8 --no-clean node test/parse4 && c8 --no-clean node test/parse5 && c8 --no-clean node test/portable && c8 --no-clean node test/tokenize && c8 --no-clean node test/print && c8 --no-clean node lib/cli package.json test/recursive && c8 --no-clean node lib/cli -sq test/passes/hasOwnProperty.json && c8 --no-clean node lib/cli -s -e json-schema-draft-04 -V test/passes/schema-04.json test/passes/data-04.json && c8 --no-clean node lib/cli -s -e json-schema-draft-07 -V test/passes/schema-07.json test/passes/data-07.json && c8 --no-clean node lib/cli -C test/passes/comments.txt && c8 --no-clean node lib/cli -pS test/passes/strings.txt && c8 --no-clean node lib/cli -M json5 test/passes/json5.text && c8 --no-clean node lib/cli -v && c8 --no-clean node lib/cli -h && c8 --no-clean node lib/cli -Pc test/fails/10.json || c8 --no-clean node lib/cli -f test/.jsonrc.yml 'test/**/*.json' '!**/fails' && c8 report -r text -r lcov",
4747
"start": "http-server -c 5",
4848
"web": "npm run web:sync && npm run web:deploy",
4949
"web:clone": "test ! -d ../jsonlint-pages && git clone --single-branch --branch gh-pages `git remote get-url origin` ../jsonlint-pages",
@@ -52,10 +52,7 @@
5252
"web:deploy": "cd ../jsonlint-pages && git commit -a -m 'Deploy site updates' && git push origin gh-pages"
5353
},
5454
"c8": {
55-
"reporter": [
56-
"lcov",
57-
"text"
58-
]
55+
"reporter": []
5956
},
6057
"release": {
6158
"plugins": [
@@ -75,30 +72,30 @@
7572
"dependencies": {
7673
"ajv": "8.12.0",
7774
"ajv-draft-04": "1.0.0",
78-
"cosmiconfig": "8.1.0",
75+
"cosmiconfig": "8.1.3",
7976
"diff": "5.1.0",
8077
"fast-glob": "3.2.12"
8178
},
8279
"devDependencies": {
83-
"@rollup/plugin-commonjs": "24.0.1",
80+
"@rollup/plugin-commonjs": "24.1.0",
8481
"@rollup/plugin-json": "6.0.0",
85-
"@rollup/plugin-node-resolve": "15.0.1",
86-
"@semantic-release/changelog": "6.0.2",
82+
"@rollup/plugin-node-resolve": "15.0.2",
83+
"@semantic-release/changelog": "6.0.3",
8784
"@semantic-release/git": "10.0.1",
88-
"@types/node": "18.14.6",
89-
"@unixcompat/cat.js": "1.0.2",
90-
"@unixcompat/mv.js": "1.0.1",
85+
"@types/node": "18.16.1",
86+
"@unixcompat/cat.js": "2.0.0",
87+
"@unixcompat/mv.js": "2.0.0",
9188
"c8": "7.13.0",
92-
"denolint": "2.0.7",
93-
"esbuild": "0.17.11",
89+
"denolint": "2.0.9",
90+
"esbuild": "0.17.18",
9491
"http-server": "14.1.1",
9592
"js-yaml": "4.1.0",
96-
"rollup": "3.18.0",
97-
"rollup-plugin-swc-minify": "1.0.5",
93+
"rollup": "3.21.0",
94+
"rollup-plugin-swc-minify": "1.0.6",
9895
"tehanu": "1.0.1",
9996
"tehanu-repo-coco": "1.0.0",
10097
"tehanu-teru": "1.0.0",
101-
"typescript": "4.9.5"
98+
"typescript": "5.0.4"
10299
},
103100
"keywords": [
104101
"json",

0 commit comments

Comments
 (0)