package.json 843 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "dash-ast",
  3. "description": "walk an AST, quickly",
  4. "version": "1.0.0",
  5. "author": "Renée Kooi <renee@kooi.me>",
  6. "bugs": {
  7. "url": "https://github.com/goto-bus-stop/dash-ast/issues"
  8. },
  9. "devDependencies": {
  10. "acorn": "^5.5.3",
  11. "astw": "^2.2.0",
  12. "estree-walk": "^2.2.0",
  13. "estree-walker": "^0.5.2",
  14. "nanobench": "^2.1.1",
  15. "standard": "^11.0.1",
  16. "tape": "^4.9.0"
  17. },
  18. "homepage": "https://github.com/goto-bus-stop/dash-ast",
  19. "keywords": [
  20. "ast",
  21. "estree",
  22. "javascript",
  23. "parse",
  24. "transform",
  25. "tree",
  26. "visitor",
  27. "walk",
  28. "walker"
  29. ],
  30. "license": "Apache-2.0",
  31. "main": "index.js",
  32. "repository": {
  33. "type": "git",
  34. "url": "https://github.com/goto-bus-stop/dash-ast.git"
  35. },
  36. "scripts": {
  37. "test": "standard && node test && node bench"
  38. }
  39. }