package.json 649 B

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