Skip to content

Commit

Permalink
fix: Upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
prantlf committed Apr 27, 2023
1 parent 8927275 commit 30f611a
Show file tree
Hide file tree
Showing 3 changed files with 2,147 additions and 482 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Coverage
uses: codecov/codecov-action@v3
- name: Publish
uses: cycjimmy/semantic-release-action@v2
uses: cycjimmy/semantic-release-action@v3
with:
semantic_version: 19
branches: master
Expand Down
35 changes: 16 additions & 19 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@
},
"scripts": {
"build": "npm run compile:jsonlint && rollup -c && npm run minify && npm run compile:tests",
"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",
"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",
"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",
"compile:tests": "tsc --moduleResolution node --module es2022 test/types.test.ts && mv.js test/types.test.js test/types.test.mjs",
"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",
"compile:tests": "tsc --moduleResolution node --module es2022 test/types.test.ts && mv-j test/types.test.js test/types.test.mjs",
"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",
"start": "http-server -c 5",
"web": "npm run web:sync && npm run web:deploy",
"web:clone": "test ! -d ../jsonlint-pages && git clone --single-branch --branch gh-pages `git remote get-url origin` ../jsonlint-pages",
Expand All @@ -52,10 +52,7 @@
"web:deploy": "cd ../jsonlint-pages && git commit -a -m 'Deploy site updates' && git push origin gh-pages"
},
"c8": {
"reporter": [
"lcov",
"text"
]
"reporter": []
},
"release": {
"plugins": [
Expand All @@ -75,30 +72,30 @@
"dependencies": {
"ajv": "8.12.0",
"ajv-draft-04": "1.0.0",
"cosmiconfig": "8.1.0",
"cosmiconfig": "8.1.3",
"diff": "5.1.0",
"fast-glob": "3.2.12"
},
"devDependencies": {
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-commonjs": "24.1.0",
"@rollup/plugin-json": "6.0.0",
"@rollup/plugin-node-resolve": "15.0.1",
"@semantic-release/changelog": "6.0.2",
"@rollup/plugin-node-resolve": "15.0.2",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/node": "18.14.6",
"@unixcompat/cat.js": "1.0.2",
"@unixcompat/mv.js": "1.0.1",
"@types/node": "18.16.1",
"@unixcompat/cat.js": "2.0.0",
"@unixcompat/mv.js": "2.0.0",
"c8": "7.13.0",
"denolint": "2.0.7",
"esbuild": "0.17.11",
"denolint": "2.0.9",
"esbuild": "0.17.18",
"http-server": "14.1.1",
"js-yaml": "4.1.0",
"rollup": "3.18.0",
"rollup-plugin-swc-minify": "1.0.5",
"rollup": "3.21.0",
"rollup-plugin-swc-minify": "1.0.6",
"tehanu": "1.0.1",
"tehanu-repo-coco": "1.0.0",
"tehanu-teru": "1.0.0",
"typescript": "4.9.5"
"typescript": "5.0.4"
},
"keywords": [
"json",
Expand Down
Loading

0 comments on commit 30f611a

Please sign in to comment.