{
  "name": "@tpluscode/sparql-builder",
  "version": "3.0.1",
  "description": "Simple JS library to build SPARQL queries",
  "main": "index.js",
  "module": "index.js",
  "type": "module",
  "types": "index.d.ts",
  "sideEffects": false,
  "files": [
    "CHANGELOG.md",
    "lib",
    "*.js",
    "*.d.ts",
    "*.d.ts.map"
  ],
  "exports": {
    ".": "./index.js",
    "./expressions": "./expressions.js"
  },
  "scripts": {
    "prepare": "husky",
    "lint": "eslint . --ext .ts --quiet --ignore-path .gitignore --ignore-path .eslintignore",
    "test": "c8 --reporter=lcov mocha test/**/*.test.ts test/*.test.ts",
    "prepack": "npm run build",
    "build": "tsc -p tsconfig.json",
    "docs": "docsify serve docs",
    "release": "changeset publish"
  },
  "dependencies": {
    "@rdfjs/data-model": "^2",
    "@rdfjs/term-set": "^2",
    "@rdfjs/types": "*",
    "@tpluscode/rdf-string": "^1.3.0",
    "@types/sparql-http-client": "^3.0.0"
  },
  "peerDependencies": {
    "sparql-http-client": "^3.0.0"
  },
  "devDependencies": {
    "@changesets/cli": "^2.16.0",
    "@tpluscode/eslint-config": "^0.4.5",
    "@types/chai": "^4.3.4",
    "@types/chai-as-promised": "^7.1.5",
    "@types/chai-snapshot-matcher": "^1.0.1",
    "@types/mocha": "^10.0.1",
    "@types/node": "^18.15.3",
    "@types/sinon": "^10.0.13",
    "@types/sinon-chai": "^3.2.9",
    "@types/sparqljs": "^3.1.2",
    "@typescript-eslint/eslint-plugin": "^7.3.1",
    "@typescript-eslint/parser": "^7.3.1",
    "@zazuko/env": "^2.0.6",
    "c8": "^7.13.0",
    "chai": "^4.5.0",
    "chai-as-promised": "^7.1.1",
    "docsify-cli": "^4.4.3",
    "eslint-import-resolver-typescript": "^3.5.3",
    "husky": "^9.0.11",
    "get-stream": "^9.0.1",
    "isomorphic-fetch": "^3.0.0",
    "lint-staged": "^15.2.2",
    "mocha": "^10.7.3",
    "mocha-chai-jest-snapshot": "^1.1.4",
    "npm-run-all": "^4.1.5",
    "sinon": "^17.0.1",
    "sinon-chai": "^3.7.0",
    "sparql-http-client": "^3.0.0",
    "sparqljs": "^3.0.1",
    "ts-node": "^10.9.1",
    "typedoc": "^0.23.27",
    "typescript": "^5.0.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tpluscode/sparql-builder.git"
  },
  "author": "Tomasz Pluskiewicz",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tpluscode/sparql-builder/issues"
  },
  "homepage": "https://github.com/tpluscode/sparql-builder#readme",
  "publishConfig": {
    "access": "public"
  },
  "lint-staged": {
    "*.{js,ts}": [
      "eslint --fix --quiet"
    ]
  },
  "mocha": {
    "loader": "ts-node/esm/transpile-only",
    "require": [
      "test/mochaSetup.js"
    ]
  }
}
