package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "esprima",
  3. "description": "ECMAScript parsing infrastructure for multipurpose analysis",
  4. "homepage": "http://esprima.org",
  5. "main": "esprima.js",
  6. "bin": {
  7. "esparse": "./bin/esparse.js",
  8. "esvalidate": "./bin/esvalidate.js"
  9. },
  10. "files": [
  11. "bin",
  12. "test/run.js",
  13. "test/runner.js",
  14. "test/test.js",
  15. "test/compat.js",
  16. "test/reflect.js",
  17. "esprima.js"
  18. ],
  19. "version": "1.0.4",
  20. "engines": {
  21. "node": ">=0.4.0"
  22. },
  23. "maintainers": [
  24. {
  25. "name": "Ariya Hidayat",
  26. "email": "ariya.hidayat@gmail.com",
  27. "web": "http://ariya.ofilabs.com"
  28. }
  29. ],
  30. "repository": {
  31. "type": "git",
  32. "url": "http://github.com/ariya/esprima.git"
  33. },
  34. "licenses": [
  35. {
  36. "type": "BSD",
  37. "url": "http://github.com/ariya/esprima/raw/master/LICENSE.BSD"
  38. }
  39. ],
  40. "keywords": [
  41. "ast",
  42. "ecmascript",
  43. "javascript",
  44. "parser",
  45. "syntax"
  46. ],
  47. "scripts": {
  48. "test": "node test/run.js",
  49. "benchmark": "node test/benchmarks.js",
  50. "benchmark-quick": "node test/benchmarks.js quick"
  51. },
  52. "__npminstall_done": true,
  53. "_from": "esprima@1.0.4",
  54. "_resolved": "https://registry.npmmirror.com/esprima/-/esprima-1.0.4.tgz"
  55. }