{
  "name": "angu",
  "version": "0.12.0",
  "description": "A small interpreter for creating DSLs",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "bench": "tsc && node dist/*.bench.js",
    "test": "tsc && mocha 'dist/*.test.js' 'dist/examples/index.js'",
    "build": "rm -rf ./dist && tsc"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jsdw/angu.git"
  },
  "keywords": [
    "interpreter",
    "evaluator",
    "calculator"
  ],
  "author": "James Wilson",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/jsdw/angu/issues"
  },
  "homepage": "https://github.com/jsdw/angu#readme",
  "devDependencies": {
    "@types/node": "^14.0.27",
    "@types/benchmark": "^1.0.31",
    "@types/mocha": "^8.0.0",
    "benchmark": "^2.1.4",
    "mocha": "^8.1.0",
    "typescript": "^3.9"
  }
}
