rdf-dereference-store
Version:
Dereference RDF to a store
108 lines (107 loc) • 2.45 kB
JSON
{
"name": "rdf-dereference-store",
"version": "1.3.2",
"description": "Dereference RDF to a store",
"main": "dist/index.js",
"types": "dist/index.d.js",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"test": "jest",
"lint": "eslint lib/* __tests__/*.ts --ext .ts",
"lint:fix": "eslint lib/* __tests__/*.ts --ext .ts --fix",
"build": "tsc",
"prepare": "tsc",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/jeswr/rdf-dereference-store.js"
},
"keywords": [
"RDF",
"Store",
"Dataset",
"Dereference",
"fetch",
"linked data",
"rdfjs"
],
"author": "Jesse Wright <jesse.wright@anu.edu.au>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeswr/rdf-dereference-store.js/issues"
},
"homepage": "https://github.com/jeswr/rdf-dereference-store.js#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/readable-stream": "^4.0.14",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0",
"pre-commit": "^1.2.2",
"rdf-serve": "^1.1.0",
"semantic-release": "^24.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"pre-commit": [
"lint",
"build",
"test"
],
"release": {
"branches": [
"main",
"+([0-9])?(.{+([0-9]),x}).x",
"next",
{
"name": "alpha",
"prerelease": true
},
{
"name": "beta",
"prerelease": true
}
]
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rdfjs/types": "^1.1.0",
"@types/n3": "^1.16.4",
"asynciterator": "^3.9.0",
"event-emitter-promisify": "^1.1.0",
"n3": "^1.17.3",
"rdf-dereference": "^3.0.0",
"rdf-parse": "^3.0.0",
"readable-stream": "^4.5.2"
}
}