package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "condense-newlines",
  3. "description": "Replace extraneous newlines with a single newline, or pass a specified number of newlines to use.",
  4. "version": "0.2.1",
  5. "homepage": "https://github.com/jonschlinkert/condense-newlines",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/condense-newlines",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/condense-newlines/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "extend-shallow": "^2.0.1",
  24. "is-whitespace": "^0.3.0",
  25. "kind-of": "^3.0.2"
  26. },
  27. "devDependencies": {
  28. "gulp-format-md": "^0.1.7",
  29. "mocha": "^2.4.5"
  30. },
  31. "keywords": [
  32. "docs",
  33. "documentation",
  34. "generate",
  35. "generator",
  36. "markdown",
  37. "templates",
  38. "verb"
  39. ],
  40. "verb": {
  41. "plugins": [
  42. "gulp-format-md"
  43. ],
  44. "reflinks": [
  45. "verb"
  46. ],
  47. "related": {
  48. "list": [
  49. "arr-union",
  50. "array-unique",
  51. "arrayify-compact"
  52. ]
  53. },
  54. "run": true,
  55. "toc": false,
  56. "layout": "default",
  57. "lint": {
  58. "reflinks": true
  59. },
  60. "tasks": [
  61. "readme"
  62. ]
  63. }
  64. }