Keine Beschreibung

package.json 1.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. "name": "Ariya Hidayat",
  25. "email": "ariya.hidayat@gmail.com",
  26. "web": "http://ariya.ofilabs.com"
  27. }],
  28. "repository": {
  29. "type": "git",
  30. "url": "http://github.com/ariya/esprima.git"
  31. },
  32. "licenses": [{
  33. "type": "BSD",
  34. "url": "http://github.com/ariya/esprima/raw/master/LICENSE.BSD"
  35. }],
  36. "keywords": [
  37. "ast",
  38. "ecmascript",
  39. "javascript",
  40. "parser",
  41. "syntax"
  42. ],
  43. "scripts": {
  44. "test": "node test/run.js",
  45. "benchmark": "node test/benchmarks.js",
  46. "benchmark-quick": "node test/benchmarks.js quick"
  47. }
  48. }