package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "author": "Ben Newman <bn@cs.stanford.edu>",
  3. "name": "recast",
  4. "version": "0.18.10",
  5. "description": "JavaScript syntax tree transformer, nondestructive pretty-printer, and automatic source map generator",
  6. "keywords": [
  7. "ast",
  8. "rewriting",
  9. "refactoring",
  10. "codegen",
  11. "syntax",
  12. "transformation",
  13. "parsing",
  14. "pretty-printing"
  15. ],
  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. "types": "main.d.ts",
  24. "scripts": {
  25. "mocha": "test/run.sh",
  26. "debug": "test/run.sh --inspect-brk",
  27. "test": "npm run build && npm run mocha",
  28. "build": "npm run clean && tsc",
  29. "clean": "ts-emit-clean",
  30. "prepack": "npm run build",
  31. "postpack": "npm run clean"
  32. },
  33. "browser": {
  34. "fs": false
  35. },
  36. "dependencies": {
  37. "ast-types": "0.13.3",
  38. "esprima": "~4.0.0",
  39. "private": "^0.1.8",
  40. "source-map": "~0.6.1"
  41. },
  42. "devDependencies": {
  43. "@babel/core": "7.7.7",
  44. "@babel/parser": "7.7.7",
  45. "@babel/preset-env": "7.7.7",
  46. "@types/esprima": "4.0.2",
  47. "@types/glob": "7.1.1",
  48. "@types/mocha": "5.2.7",
  49. "@types/node": "13.1.1",
  50. "esprima-fb": "15001.1001.0-dev-harmony-fb",
  51. "flow-parser": "0.119.1",
  52. "glob": "7.1.5",
  53. "mocha": "6.2.2",
  54. "reify": "0.20.12",
  55. "ts-emit-clean": "1.0.0",
  56. "ts-node": "7.0.1",
  57. "typescript": "3.6.4"
  58. },
  59. "engines": {
  60. "node": ">= 4"
  61. }
  62. }