package.json 1.8 KB

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