{
  "name": "opa-compile-response-parser",
  "version": "2.0.0",
  "private": false,
  "description": "An Open Policy Agent Compile Response Parser",
  "main": "./dist/cjs/index.js",
  "types": "./dist/cjs/index.d.ts",
  "typings": "./dist/cjs/index.d.ts",
  "module": "./dist/esm/index.js",
  "unpkg": "./dist/umd-prod/index.js",
  "files": [
    "dist",
    "LICENSE"
  ],
  "scripts": {
    "test": "TS_NODE_PROJECT=test/tsconfig.json mocha -r ts-node/register -r tsconfig-paths/register \"test/**/*.spec.ts\"",
    "build": "rollup -c -m",
    "build-docs": "rimraf docs && typedoc --gaID UA-128574696-3 --theme default --includeVersion --out docs src/index.ts",
    "clean": "rimraf dist",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run build",
    "prettier": "prettier --write 'src/*.js' 'src/*.ts'",
    "eslint": "eslint src/*.ts",
    "release:patch": "npm version patch && npm publish && git push --follow-tags",
    "release:minor": "npm version minor && npm publish && git push --follow-tags",
    "release:major": "npm version major && npm publish && git push --follow-tags",
    "start-db": "cd test/docker/pg && docker-compose up -d",
    "stop-db": "cd test/docker/pg && docker-compose down -v",
    "start-es": "cd test/docker/es && docker-compose up -d",
    "stop-es": "cd test/docker/es && docker-compose down -v",
    "start-opa": "cd test/docker/opa && docker-compose up -d",
    "stop-opa": "cd test/docker/opa && docker-compose down -v"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/t83714/opa-compile-response-parser.git"
  },
  "keywords": [
    "OPA",
    "Rego",
    "AST",
    "Compile",
    "Partial Eval",
    "Parser"
  ],
  "author": "Jacky Jiang",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/t83714/opa-compile-response-parser/issues"
  },
  "homepage": "https://github.com/t83714/opa-compile-response-parser#readme",
  "dependencies": {
    "lodash-es": "^4.17.21"
  },
  "devDependencies": {
    "@elastic/elasticsearch": "^7.2.0",
    "@rollup/plugin-commonjs": "^22.0.2",
    "@rollup/plugin-node-resolve": "^14.1.0",
    "@rollup/plugin-typescript": "^8.5.0",
    "@types/chai": "^4.1.7",
    "@types/chai-as-promised": "^7.1.0",
    "@types/fs-extra": "^8.0.0",
    "@types/lodash": "^4.14.136",
    "@types/lodash-es": "^4.17.3",
    "@types/mocha": "^5.2.7",
    "@types/node": "^18.7.18",
    "@types/pg": "^8.6.5",
    "@types/recursive-readdir": "^2.2.0",
    "@typescript-eslint/eslint-plugin": "^5.11.0",
    "@typescript-eslint/parser": "^5.11.0",
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "cross-fetch": "^3.1.5",
    "eslint": "^8.8.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "fs-extra": "^8.1.0",
    "lodash": "^4.17.21",
    "mocha": "^6.1.4",
    "pg": "^8.7.3",
    "prettier": "^2.5.1",
    "recursive-readdir": "^2.2.2",
    "rimraf": "^2.6.3",
    "rollup": "^2.79.0",
    "rollup-plugin-terser": "^7.0.2",
    "ts-node": "^10.9.1",
    "tsconfig-paths": "^4.1.0",
    "typedoc": "^0.22.18",
    "tslib": "^2.3.1",
    "typescript": "~4.2.4"
  },
  "sideEffects": false,
  "npmName": "opa-compile-response-parser",
  "npmFileMap": [
    {
      "basePath": "dist",
      "files": [
        "**/*"
      ]
    }
  ]
}
