package.json 1004 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "esprima-extract-comments",
  3. "description": "Extract code comments from string or from a glob of files using esprima.",
  4. "version": "0.2.1",
  5. "homepage": "https://github.com/jonschlinkert/esprima-extract-comments",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/esprima-extract-comments",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/esprima-extract-comments/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.8"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "esprima": "^2.7.1"
  24. },
  25. "keywords": [
  26. "block",
  27. "code",
  28. "comment",
  29. "comments",
  30. "context",
  31. "esprima",
  32. "extract",
  33. "glob",
  34. "javascript",
  35. "parse"
  36. ],
  37. "verb": {
  38. "related": {
  39. "list": [
  40. "extract-comments",
  41. "js-comments",
  42. "parse-comments"
  43. ]
  44. },
  45. "plugins": [
  46. "gulp-format-md"
  47. ]
  48. }
  49. }