package.json 743 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "estree-walker",
  3. "description": "Traverse an ESTree-compliant AST",
  4. "version": "1.0.1",
  5. "author": "Rich Harris",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/Rich-Harris/estree-walker"
  10. },
  11. "main": "dist/estree-walker.umd.js",
  12. "module": "src/estree-walker.js",
  13. "types": "types/index.d.ts",
  14. "scripts": {
  15. "prepublishOnly": "npm run build && npm test",
  16. "build": "tsc && rollup -c",
  17. "test": "mocha --opts mocha.opts"
  18. },
  19. "devDependencies": {
  20. "@types/estree": "0.0.39",
  21. "mocha": "^5.2.0",
  22. "rollup": "^0.67.3",
  23. "rollup-plugin-sucrase": "^2.1.0",
  24. "typescript": "^3.6.3"
  25. },
  26. "files": [
  27. "src",
  28. "dist",
  29. "types",
  30. "README.md"
  31. ]
  32. }