package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "word-wrap",
  3. "description": "Wrap words to a specified length.",
  4. "version": "1.2.3",
  5. "homepage": "https://github.com/jonschlinkert/word-wrap",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Danilo Sampaio <danilo.sampaio@gmail.com> (localhost:8080)",
  9. "Fede Ramirez <i@2fd.me> (https://2fd.github.io)",
  10. "Joe Hildebrand <joe-github@cursive.net> (https://twitter.com/hildjj)",
  11. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
  12. "Todd Kennedy (https://tck.io)",
  13. "Waldemar Reusch (https://github.com/lordvlad)",
  14. "Wolfgang Faust (http://www.linestarve.com)",
  15. "Zach Hale <zachhale@gmail.com> (http://zachhale.com)"
  16. ],
  17. "repository": "jonschlinkert/word-wrap",
  18. "bugs": {
  19. "url": "https://github.com/jonschlinkert/word-wrap/issues"
  20. },
  21. "license": "MIT",
  22. "files": [
  23. "index.js",
  24. "index.d.ts"
  25. ],
  26. "main": "index.js",
  27. "engines": {
  28. "node": ">=0.10.0"
  29. },
  30. "scripts": {
  31. "test": "mocha"
  32. },
  33. "devDependencies": {
  34. "gulp-format-md": "^0.1.11",
  35. "mocha": "^3.2.0"
  36. },
  37. "keywords": [
  38. "break",
  39. "carriage",
  40. "line",
  41. "new-line",
  42. "newline",
  43. "return",
  44. "soft",
  45. "text",
  46. "word",
  47. "word-wrap",
  48. "words",
  49. "wrap"
  50. ],
  51. "typings": "index.d.ts",
  52. "verb": {
  53. "toc": false,
  54. "layout": "default",
  55. "tasks": [
  56. "readme"
  57. ],
  58. "plugins": [
  59. "gulp-format-md"
  60. ],
  61. "lint": {
  62. "reflinks": true
  63. },
  64. "related": {
  65. "list": [
  66. "common-words",
  67. "shuffle-words",
  68. "unique-words",
  69. "wordcount"
  70. ]
  71. },
  72. "reflinks": [
  73. "verb",
  74. "verb-generate-readme"
  75. ]
  76. }
  77. }