{
  "name": "astoptech",
  "version": "1.0.6",
  "description": "abstract syntax tree optimization techniques",
  "main": "index.js",
  "scripts": {
    "test": "node src/binaryExpressionReduction.spec.js && node src/ifStatementRemoval.spec.js && node src/negationOperatorRemoval.spec.js && node src/logicalExpressionReduction.spec.js && node src/ternaryOperatorReduction.spec.js && node src/typeofOperatorReduction.spec.js && node src/memberExpressionReduction.spec.js",
    "lint": "standard"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/buxlabs/astoptech.git"
  },
  "keywords": [
    "ast",
    "optimization",
    "techniques",
    "abstract-syntax-tree"
  ],
  "author": "Emil Ajdyna <emil@ajdyna.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/buxlabs/astoptech/issues"
  },
  "homepage": "https://github.com/buxlabs/astoptech#readme",
  "devDependencies": {
    "abstract-syntax-tree": "^2.1.0",
    "ava": "^1.0.1",
    "nyc": "^13.1.0",
    "standard": "^12.0.1"
  }
}
