package.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "author": "Ben Newman <bn@cs.stanford.edu>",
  3. "name": "recast",
  4. "description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator",
  5. "keywords": [
  6. "ast",
  7. "rewriting",
  8. "refactoring",
  9. "codegen",
  10. "syntax",
  11. "transformation",
  12. "parsing",
  13. "pretty-printing"
  14. ],
  15. "version": "0.11.23",
  16. "homepage": "http://github.com/benjamn/recast",
  17. "repository": {
  18. "type": "git",
  19. "url": "git://github.com/benjamn/recast.git"
  20. },
  21. "license": "MIT",
  22. "main": "main.js",
  23. "scripts": {
  24. "test": "node ./node_modules/mocha/bin/mocha --reporter spec --full-trace",
  25. "debug": "node ./node_modules/mocha/bin/mocha --debug-brk --reporter spec"
  26. },
  27. "browser": {
  28. "fs": false
  29. },
  30. "dependencies": {
  31. "ast-types": "0.9.6",
  32. "esprima": "~3.1.0",
  33. "private": "~0.1.5",
  34. "source-map": "~0.5.0"
  35. },
  36. "devDependencies": {
  37. "babylon": "~6.15.0",
  38. "esprima-fb": "^15001.1001.0-dev-harmony-fb",
  39. "mocha": "~3.1.2"
  40. },
  41. "engines": {
  42. "node": ">= 0.8"
  43. }
  44. }