package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "strip-comments",
  3. "description": "Strip comments from code. Removes line comments, block comments, the first comment only, or all comments. Optionally leave protected comments unharmed.",
  4. "version": "0.4.4",
  5. "homepage": "https://github.com/jonschlinkert/strip-comments",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/strip-comments",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/strip-comments/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "engines": {
  16. "node": ">=0.10.0"
  17. },
  18. "scripts": {
  19. "test": "mocha"
  20. },
  21. "dependencies": {
  22. "extend-shallow": "^2.0.1",
  23. "extract-comments": "^0.10.1"
  24. },
  25. "devDependencies": {
  26. "gulp-format-md": "^0.1.5",
  27. "mocha": "*"
  28. },
  29. "keywords": [
  30. "block",
  31. "comment",
  32. "comments",
  33. "expressions",
  34. "line",
  35. "protected",
  36. "re",
  37. "regex",
  38. "regexp",
  39. "regular",
  40. "remove",
  41. "strip"
  42. ],
  43. "verb": {
  44. "toc": true,
  45. "tasks": [
  46. "readme"
  47. ],
  48. "plugins": [
  49. "gulp-format-md"
  50. ],
  51. "related": {
  52. "list": [
  53. "code-context",
  54. "esprima-extract-comments",
  55. "extract-comments",
  56. "js-comments",
  57. "parse-code-context",
  58. "parse-comments",
  59. "snapdragon"
  60. ]
  61. }
  62. }
  63. }