{
  "author": "Ben Newman <bn@cs.stanford.edu>",
  "name": "recast",
  "version": "0.17.6",
  "description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator",
  "keywords": [
    "ast",
    "rewriting",
    "refactoring",
    "codegen",
    "syntax",
    "transformation",
    "parsing",
    "pretty-printing"
  ],
  "homepage": "http://github.com/benjamn/recast",
  "repository": {
    "type": "git",
    "url": "git://github.com/benjamn/recast.git"
  },
  "license": "MIT",
  "main": "main.js",
  "types": "main.d.ts",
  "scripts": {
    "tsc": "tsc --noEmit",
    "mocha": "test/run.sh",
    "debug": "test/run.sh --inspect-brk",
    "test": "npm run tsc && npm run mocha",
    "build": "tsc && ts-add-module-exports",
    "clean": "ts-emit-clean",
    "prepack": "npm run clean && npm run build",
    "postpack": "npm run clean"
  },
  "browser": {
    "fs": false
  },
  "dependencies": {
    "ast-types": "0.12.4",
    "esprima": "~4.0.0",
    "private": "^0.1.8",
    "source-map": "~0.6.1"
  },
  "devDependencies": {
    "@babel/core": "^7.4.0",
    "@babel/parser": "^7.4.2",
    "@babel/preset-env": "^7.4.2",
    "@types/esprima": "^4.0.2",
    "@types/glob": "^7.1.1",
    "@types/mocha": "^5.2.5",
    "@types/node": "^10.12.21",
    "esprima-fb": "^15001.1001.0-dev-harmony-fb",
    "flow-parser": "^0.95.1",
    "glob": "^7.1.3",
    "mocha": "^6.0.2",
    "reify": "^0.18.1",
    "ts-add-module-exports": "^1.0.0",
    "ts-emit-clean": "^1.0.0",
    "ts-node": "^7.0.1",
    "typescript": "^3.3.4000"
  },
  "engines": {
    "node": ">= 4"
  }
}
