graphdb
Version:
Javascript client library supporting GraphDB and RDF4J REST API.
98 lines (97 loc) • 2.68 kB
JSON
{
"name": "graphdb",
"version": "3.1.0",
"description": "Javascript client library supporting GraphDB and RDF4J REST API.",
"author": {
"name": "\"Sirma AI\" JSC, trading as Ontotext",
"url": "https://www.ontotext.com/"
},
"contributors": [
{
"name": "Desislava Hristova",
"email": "desislava.hristova@ontotext.com"
},
{
"name": "Mihail Radkov",
"email": "mihail.radkov@ontotext.com"
},
{
"name": "Svilen Velikov",
"email": "svilen.velikov@ontotext.com"
},
{
"name": "Teodossi Dossev",
"email": "teodossi.dossev@ontotext.com"
}
],
"homepage": "https://github.com/Ontotext-AD/graphdb.js",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Ontotext-AD/graphdb.js"
},
"bugs": {
"url": "https://github.com/Ontotext-AD/graphdb.js/issues"
},
"keywords": [
"rdf4j",
"rdfjs",
"graphdb",
"javascript",
"rdf4j api",
"rest"
],
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=14.17.0"
},
"scripts": {
"build": "node scripts/build.js && npm run doc && npm run tsd",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:report": "rimraf coverage/ && jest --config jest-report.config.js",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"lint:test": "eslint --no-eslintrc --config .eslintrc-test ./test",
"doc": "jsdoc -c jsdoc.conf.json",
"tsd": "tsc && node scripts/generate-types.js",
"install:local": "npm pack && npm install -g ./$npm_package_name-$npm_package_version.tgz",
"install:e2e": "cd test-e2e/ && npm clean-install && npm link graphdb",
"e2e:local": "npm run install:local && npm run install:e2e",
"e2e:run": "npm run e2e:local && cd test-e2e/ && npm run test"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.4",
"minimist": "^1.2.8",
"sonarqube-scanner": "^3.3.0",
"stream-mock": "^2.0.5"
},
"dependencies": {
"axios": "^1.8.4",
"base64url": "^3.0.1",
"jsonld-streaming-parser": "^5.0.0",
"n3": "^1.24.2",
"pino": "^8.21.0",
"qs": "^6.14.0",
"rdfxml-streaming-parser": "^3.0.1",
"sparqljson-parse": "^3.0.0",
"sparqlxml-parse": "^3.0.0",
"typescript": "^5.8.2",
"uuid": "^9.0.1"
}
}