{
  "name": "ts-xpath",
  "version": "0.4.0",
  "type": "module",
  "description": "XPath Parser for TypeScript",
  "authors": [
    "Dimagi <dev@dimagi.com>",
    "Sheean Spoel (Utrecht University, Digital Humanities Lab)"
  ],
  "license": "BSD-3-Clause",
  "homepage": "https://github.com/UUDigitalHumanitieslab/ts-xpath#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/UUDigitalHumanitieslab/ts-xpath.git"
  },
  "keywords": [
    "xpath",
    "typescript",
    "jison",
    "parser"
  ],
  "bugs": {
    "url": "https://github.com/UUDigitalHumanitieslab/ts-xpath/issues"
  },
  "dependencies": {
    "bignumber.js": "^9.1.1",
    "typescript": "^4.9.5"
  },
  "devDependencies": {
    "@types/jasmine": "^3.7.7",
    "jasmine-core": "^4.5.0",
    "jison-gho": "0.6.1-216",
    "karma": "^6.4.0",
    "karma-chrome-launcher": "^3.1.1",
    "karma-coverage-istanbul-reporter": "^3.0.3",
    "karma-jasmine": "^5.1.0",
    "karma-spec-reporter": "0.0.36",
    "karma-sourcemap-loader": "^0.4.0",
    "karma-typescript-preprocessor": "^0.4.0",
    "karma-webpack": "^5.0.0",
    "ts-loader": "^9.4.2",
    "webpack": "^5.75.0",
    "webpack-cli": "^5.0.1",
    "webpack-dev-server": "^4.11.1"
  },
  "engines": {
    "yarn": ">= 1.0.0"
  },
  "typings": "dist/xpath.d.ts",
  "exports": {
    ".": {
      "types": "./dist/xpath.d.ts",
      "import": "./dist/esm/xpath.mjs",
      "default": "./dist/commonjs/xpath.cjs"
    },
    "./package.json": "./package.json"
  },
  "scripts": {
    "prepublishOnly": "yarn build",
    "jison": "cd src/jison && node $(yarn bin jison) -m es xpath.jison xpath.jisonlex",
    "tsc": "tsc",
    "prebuild": "yarn jison",
    "build": "rm -rf dist/ && webpack --mode=production --node-env=production",
    "test": "yarn jison && karma start karma.conf.cjs --single-run",
    "dev": "WEBPACK_ENV=dev webpack --progress --watch",
    "build:dev": "webpack --mode=development",
    "build:prod": "webpack --mode=production --node-env=production",
    "watch": "webpack --watch",
    "serve": "webpack serve"
  }
}