-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[chore,refactor] Bump deps & version, move to Vitest
- Loading branch information
Showing
14 changed files
with
1,128 additions
and
660 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@agentlab/sparql-jsld-client", | ||
"version": "5.4.0", | ||
"version": "5.5.0", | ||
"description": "SPARQL JSON Schema Linked Data Client", | ||
"license": "GPL-3.0", | ||
"author": "Aleksei Ivanov <[email protected]>", | ||
|
@@ -44,21 +44,21 @@ | |
"start": "rollup -w", | ||
"build": "pnpm clean && rollup -c", | ||
"build-tsc": "pnpm tsc --project ./tsconfig-build.json", | ||
"test": "cross-env NODE_ENV=--experimental-vm-modules jest --runInBand", | ||
"test:ci": "cross-env NODE_ENV=--experimental-vm-modules jest --ci --coverage --maxWorkers=2", | ||
"test": "vitest --run", | ||
"test:ci": "vitest --ci --coverage --maxWorkers=2 --run", | ||
"lint": "eslint \"{src,test}/**/*.{js,ts}\"", | ||
"prepare": "husky && pnpm build", | ||
"format": "./node_modules/.bin/prettier --write \"{src,test}/**/*.{js,ts,json,md}\"", | ||
"lint-staged": "lint-staged" | ||
}, | ||
"peerDependencies": { | ||
"axios": ">=1.7.7", | ||
"axios": ">=1.7.8", | ||
"dayjs": ">=1.11.13", | ||
"is-url": ">=1.2.4", | ||
"json-schema": ">=0.4.0", | ||
"jsonld": ">=8.3.2", | ||
"lodash-es": ">=4.17.21", | ||
"mobx": ">=6.13.3", | ||
"mobx": ">=6.13.5", | ||
"mobx-state-tree": ">=6.0.1", | ||
"rdf-data-factory": ">=1.1.2", | ||
"rdf-literal": ">=1.3.2", | ||
|
@@ -71,14 +71,14 @@ | |
"@types/json-schema": "^7.0.15", | ||
"@types/jsonld": "^1.5.15", | ||
"@types/lodash-es": "^4.17.12", | ||
"@types/sparqljs": "^3.1.11", | ||
"axios": "^1.7.7", | ||
"@types/sparqljs": "^3.1.12", | ||
"axios": "^1.7.8", | ||
"dayjs": "^1.11.13", | ||
"is-url": "^1.2.4", | ||
"json-schema": "^0.4.0", | ||
"jsonld": "^8.3.2", | ||
"lodash-es": "^4.17.21", | ||
"mobx": "^6.13.3", | ||
"mobx": "^6.13.5", | ||
"mobx-state-tree": "^6.0.1", | ||
"rdf-data-factory": "^1.1.2", | ||
"rdf-literal": "^1.3.2", | ||
|
@@ -87,49 +87,45 @@ | |
"uuid62": "^1.0.2" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "9.11.1", | ||
"@jest/globals": "^29.7.0", | ||
"@eslint/js": "9.15.0", | ||
"@rollup/plugin-babel": "^6.0.4", | ||
"@rollup/plugin-commonjs": "^28.0.0", | ||
"@rollup/plugin-commonjs": "^28.0.1", | ||
"@rollup/plugin-json": "6.1.0", | ||
"@rollup/plugin-node-resolve": "15.3.0", | ||
"@rollup/plugin-terser": "^0.4.4", | ||
"@rollup/plugin-typescript": "^12.1.0", | ||
"@rollup/plugin-typescript": "^12.1.1", | ||
"@types/is-url": "^1.2.32", | ||
"@types/node": "^22.7.4", | ||
"@typescript-eslint/eslint-plugin": "^8.7.0", | ||
"@typescript-eslint/parser": "^8.7.0", | ||
"@types/node": "^22.10.0", | ||
"@typescript-eslint/eslint-plugin": "^8.16.0", | ||
"@typescript-eslint/parser": "^8.16.0", | ||
"cross-env": "^7.0.3", | ||
"custom-env": "^2.0.6", | ||
"esbuild": "^0.24.0", | ||
"eslint": "9.11.1", | ||
"eslint": "9.15.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-jest": "^28.8.3", | ||
"eslint-plugin-jest": "^28.9.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"globals": "^15.9.0", | ||
"husky": "^9.1.6", | ||
"jest": "^29.7.0", | ||
"jest-extended": "^4.0.2", | ||
"jest-watch-typeahead": "^2.2.2", | ||
"globals": "^15.12.0", | ||
"husky": "^9.1.7", | ||
"lint-staged": "^15.2.10", | ||
"prettier": "3.3.3", | ||
"prettier": "3.4.1", | ||
"rimraf": "^6.0.1", | ||
"rollup": "^4.22.5", | ||
"rollup": "^4.27.4", | ||
"rollup-plugin-dts": "^6.1.1", | ||
"rollup-plugin-esbuild": "^6.1.1", | ||
"rollup-plugin-peer-deps-external": "^2.2.4", | ||
"ts-jest": "^29.2.5", | ||
"ts-node": "^10.9.2", | ||
"tslib": "^2.7.0", | ||
"typescript": "5.5.4", | ||
"typescript-eslint": "^8.7.0" | ||
"tslib": "^2.8.1", | ||
"typescript": "5.7.2", | ||
"typescript-eslint": "^8.16.0", | ||
"vitest": "^2.1.6" | ||
}, | ||
"lint-staged": { | ||
"{src,test}/**/*.{js,jsx,ts,tsx,json}": [ | ||
"eslint" | ||
] | ||
}, | ||
"packageManager": "pnpm@9.11.0", | ||
"packageManager": "pnpm@9.14.2", | ||
"browser": { | ||
"_process": false, | ||
"fs": false, | ||
|
Oops, something went wrong.