package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. {
  2. "name": "extract-comments",
  3. "description": "Uses esprima to extract line and block comments from a string of JavaScript. Also optionally parses code context (the next line of code after a comment).",
  4. "version": "0.10.1",
  5. "homepage": "https://github.com/jonschlinkert/extract-comments",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/extract-comments",
  8. "bugs": {
  9. "bugs": "https://github.com/jonschlinkert/extract-comments/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js",
  14. "lib/"
  15. ],
  16. "main": "index.js",
  17. "engines": {
  18. "node": ">=0.10"
  19. },
  20. "scripts": {
  21. "test": "gulp"
  22. },
  23. "dependencies": {
  24. "define-property": "^0.2.5",
  25. "esprima-extract-comments": "^0.2.1",
  26. "extend-shallow": "^2.0.1",
  27. "parse-code-context": "^0.2.1"
  28. },
  29. "devDependencies": {
  30. "gulp": "^3.9.0",
  31. "gulp-eslint": "^1.1.1",
  32. "gulp-format-md": "^0.1.4",
  33. "gulp-istanbul": "^0.10.3",
  34. "gulp-mocha": "^2.2.0",
  35. "mocha": "*",
  36. "should": "*",
  37. "time-diff": "^0.1.0"
  38. },
  39. "keywords": [
  40. "ast",
  41. "block",
  42. "code",
  43. "comment",
  44. "comments",
  45. "context",
  46. "esprima",
  47. "extract",
  48. "glob",
  49. "javascript",
  50. "line",
  51. "parse",
  52. "tokenize",
  53. "tokens"
  54. ],
  55. "verb": {
  56. "related": {
  57. "list": [
  58. "code-context",
  59. "esprima-extract-comments",
  60. "parse-comments"
  61. ],
  62. "description": ""
  63. },
  64. "deps": {
  65. "ignore": [
  66. "fixtures"
  67. ]
  68. },
  69. "plugins": [
  70. "gulp-format-md"
  71. ]
  72. }
  73. }