{
  "name": "expression-eval",
  "version": "5.0.0",
  "description": "JavaScript expression parsing and evaluation.",
  "source": "index.ts",
  "main": "dist/expression-eval.js",
  "module": "dist/expression-eval.module.js",
  "unpkg": "dist/expression-eval.umd.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/donmccurdy/expression-eval.git"
  },
  "scripts": {
    "dev": "microbundle watch",
    "build": "microbundle",
    "test": "node test.js | tap-spec",
    "preversion": "npm run build && npm test",
    "postversion": "git push && git push --tags && npm publish"
  },
  "keywords": [
    "expression",
    "eval",
    "evaluation",
    "parser",
    "ast",
    "abstract",
    "syntax",
    "tree",
    "math"
  ],
  "author": "Don McCurdy <dm@donmccurdy.com>",
  "license": "MIT",
  "dependencies": {
    "jsep": "^0.3.0"
  },
  "devDependencies": {
    "@types/tape": "^4.13.0",
    "@typescript-eslint/eslint-plugin": "^4.12.0",
    "eslint": "^7.17.0",
    "microbundle": "^0.13.0",
    "source-map-support": "^0.5.19",
    "tap-spec": "^5.0.0",
    "tape": "^5.1.1",
    "typescript": "^4.1.3"
  },
  "files": [
    "dist/",
    "index.js",
    "README.md",
    "LICENSE",
    "package.json",
    "package-lock.json"
  ]
}
