{
  "name": "@orioro/expression",
  "version": "6.5.0",
  "description": "Framework of expression interpreters",
  "keywords": [
    "expression",
    "eval",
    "conditional"
  ],
  "homepage": "https://github.com/orioro/node-expression",
  "bugs": "https://github.com/orioro/node-expression/issues",
  "repository": {
    "type": "git",
    "url": "https://github.com/orioro/node-expression.git"
  },
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "scripts": {
    "test": "jest --collectCoverage",
    "dev": "jest --watch",
    "build": "rm -rf dist && rollup --config ./rollup/build.config.js && yarn tsc:declaration",
    "prepare": "yarn build",
    "update-dependencies": "npx npm-check-updates -u",
    "tsc:declaration": "tsc --declaration --emitDeclarationOnly --declarationDir dist",
    "tsc:validate": "tsc --noEmit",
    "commit": "cz",
    "lint:eslint": "eslint src",
    "lint:prettier": "prettier src --check",
    "lint": "yarn lint:eslint && yarn lint:prettier",
    "prettier": "prettier src",
    "ci-check": "yarn test && yarn tsc:validate && yarn lint"
  },
  "author": "",
  "license": "ISC",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist/**/*"
  ],
  "devDependencies": {
    "@babel/core": "^7.11.5",
    "@babel/preset-env": "^7.11.5",
    "@babel/preset-typescript": "^7.10.4",
    "@orioro/jest-util": "^1.5.0",
    "@orioro/readme": "^1.0.1",
    "@rollup/plugin-babel": "^5.2.0",
    "@rollup/plugin-commonjs": "^15.0.0",
    "@rollup/plugin-node-resolve": "^9.0.0",
    "@types/jest": "^26.0.14",
    "@typescript-eslint/eslint-plugin": "^4.15.0",
    "@typescript-eslint/parser": "^4.15.0",
    "babel-jest": "^26.3.0",
    "commitizen": "^4.2.3",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^7.20.0",
    "eslint-config-prettier": "^7.2.0",
    "eslint-plugin-jest": "^24.1.3",
    "husky": "^5.0.9",
    "jest": "^26.4.2",
    "prettier": "2.2.1",
    "regenerator-runtime": "^0.13.7",
    "rollup": "^2.26.8",
    "semantic-release": "^17.3.7",
    "typescript": "^4.0.2"
  },
  "dependencies": {
    "@orioro/typing": "^5.0.2",
    "lodash": "^4.17.20",
    "mem": "^8.0.0"
  },
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "release": {
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      "@semantic-release/github"
    ]
  }
}
