graphql-to-sparql
Version:
Converts GraphQL queries to SPARQL queries
99 lines (98 loc) • 2.58 kB
JSON
{
"name": "graphql-to-sparql",
"version": "6.1.0",
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"description": "Converts GraphQL queries to SPARQL queries",
"typings": "index",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"license": "MIT",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/rubensworks/"
},
"homepage": "https://github.com/rubensworks/graphql-to-sparql.js#readme",
"repository": "git@github.com:rubensworks/graphql-to-sparql.js.git",
"bugs": {
"url": "https://github.com/rubensworks/graphql-to-sparql.js/issues"
},
"keywords": [
"graphql",
"graphqlld",
"sparql",
"query",
"rdf",
"linked data"
],
"main": "index.js",
"bin": {
"graphql-to-sparql": "./bin/graphql-to-sparql.js"
},
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"bin/**/*.js.map",
"index.d.ts",
"index.js",
"index.js.map",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map"
],
"pre-commit": [
"build",
"lint",
"test"
],
"jest": {
"globals": {
"ts-jest": {
"tsConfig": "test/tsconfig.json"
}
},
"transform": {
"^.+\\.ts$": "ts-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$"
],
"testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverage": true,
"testEnvironment": "node"
},
"scripts": {
"test": "jest ${1}",
"test-watch": "jest ${1} --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"lint": "eslint .",
"build": "tsc",
"build-watch": "tsc --watch",
"validate": "npm ls",
"prepare": "npm run build",
"version": "manual-git-changelog onversion"
},
"dependencies": {
"@traqula/algebra-sparql-1-2": "^1.0.0",
"@traqula/algebra-transformations-1-2": "^1.0.0",
"@traqula/generator-sparql-1-2": "^1.0.0",
"graphql": "^17.0.0",
"jsonld-context-parser": "^3.0.0",
"minimist": "^1.2.0",
"rdf-data-factory": "^2.0.1"
},
"devDependencies": {
"@rubensworks/eslint-config": "^3.1.0",
"@types/jest": "^30.0.0",
"@types/minimist": "^1.2.0",
"coveralls": "^3.0.0",
"eslint": "^8.56.0",
"jest": "^30.0.0",
"manual-git-changelog": "^1.0.1",
"pre-commit": "^2.0.0",
"ts-jest": "^29.0.0",
"typescript": "^6.0.0"
}
}