rdflib 2.3.6-alpha.0 → 2.3.6

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.
Files changed (1) hide show
  1. package/package.json +6 -6
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "rdflib",
3
3
  "description": "an RDF library for node.js. Suitable for client and server side.",
4
- "version": "2.3.6-alpha.0",
4
+ "version": "2.3.6",
5
5
  "private": false,
6
6
  "browserslist": [
7
7
  "> 0.5%"
@@ -66,13 +66,13 @@
66
66
  "@types/express": "^5.0.6",
67
67
  "@types/jsonld": "^1.5.15",
68
68
  "@types/mocha": "^10.0.10",
69
- "@types/node": "^25.4.0",
69
+ "@types/node": "^25.5.0",
70
70
  "@types/sinon-chai": "^4.0.0",
71
71
  "babel-loader": "^10.1.1",
72
72
  "chai": "^6.2.2",
73
73
  "colors": "^1.4.0",
74
74
  "diff": "^8.0.3",
75
- "eslint": "^9.39.4",
75
+ "eslint": "^10.0.3",
76
76
  "globals": "^17.4.0",
77
77
  "locate-path": "^8.0.0",
78
78
  "mocha": "^11.7.5",
@@ -87,7 +87,7 @@
87
87
  "typedoc": "^0.28.17",
88
88
  "typescript": "^5.9.3",
89
89
  "webpack": "^5.105.4",
90
- "webpack-cli": "^6.0.1",
90
+ "webpack-cli": "^7.0.0",
91
91
  "webpack-dev-server": "^5.2.3"
92
92
  },
93
93
  "scripts": {
@@ -100,7 +100,7 @@
100
100
  "lint": "eslint src tests",
101
101
  "lint:fix": "eslint src tests --fix",
102
102
  "ignore:prepublishOnly": "npm ci && npm run build:all && npm run doc && npm run test",
103
- "postversion": "git push --follow-tags",
103
+ "postversion": "case \"$npm_package_version\" in *-*) git push ;; *) git push --follow-tags ;; esac",
104
104
  "start": "webpack serve --port 4800",
105
105
  "test": "npm run test:unit && npm run test:serialize && npm run test:types",
106
106
  "test:clean": "rimraf tests/serialize/,*",
@@ -123,7 +123,7 @@
123
123
  "test:serialize:16": "cd ./tests/serialize && node ./data.js -in=t1.ttl -format=application/ld+json -out=,t1.jsonld && node diff ,t1.jsonld t16-ref.jsonld",
124
124
  "test:serialize:17": "cd ./tests/serialize && node ./data.js -in=t17.ttl -format=application/rdf+xml -out=,t17.xml && node diff ,t17.xml t17-ref.xml",
125
125
  "test:serialize:18": "cd ./tests/serialize && node ./data.js -in=t18.ttl -format=application/rdf+xml -out=,t18.xml && node diff ,t18.xml t18-ref.xml",
126
- "test:types": "tsc --noEmit --target es2019 --moduleResolution node tests/types/*.ts",
126
+ "test:types": "tsc --noEmit --skipLibCheck --target es2019 --moduleResolution node tests/types/*.ts",
127
127
  "test:unit": "mocha --growl --require ./tests/babel-register.js tests/unit/**-test.*",
128
128
  "test:unit:egp": "mocha --require ./tests/babel-register.js tests/unit/fetcher-egp-test.js",
129
129
  "test:unit:dev": "mocha --watch --growl --require ./tests/babel-register.js tests/unit/**-test.js",