package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "dashify",
  3. "description": "Convert a camelcase or space-separated string to a dash-separated string. ~12 sloc, fast, supports diacritics.",
  4. "version": "2.0.0",
  5. "homepage": "https://github.com/jonschlinkert/dashify",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jeffrey Priebe (https://github.com/jeffreypriebe)",
  9. "Jon Schlinkert (http://twitter.com/jonschlinkert)",
  10. "Ondrej Brinkel (https://www.anzui.de)"
  11. ],
  12. "repository": "jonschlinkert/dashify",
  13. "bugs": {
  14. "url": "https://github.com/jonschlinkert/dashify/issues"
  15. },
  16. "license": "MIT",
  17. "files": [
  18. "index.js"
  19. ],
  20. "main": "index.js",
  21. "engines": {
  22. "node": ">=4"
  23. },
  24. "scripts": {
  25. "test": "mocha"
  26. },
  27. "devDependencies": {
  28. "gulp-format-md": "^2.0.0",
  29. "mocha": "^5.2.0"
  30. },
  31. "keywords": [
  32. "dash",
  33. "dashcase",
  34. "dasherize",
  35. "dashify",
  36. "slug",
  37. "slugify"
  38. ],
  39. "verb": {
  40. "toc": false,
  41. "layout": "default",
  42. "tasks": [
  43. "readme"
  44. ],
  45. "plugins": [
  46. "gulp-format-md"
  47. ],
  48. "related": {
  49. "description": "Other awesome string libs you might like:",
  50. "list": [
  51. "pascalcase",
  52. "romanize",
  53. "word-wrap",
  54. "wordcount"
  55. ]
  56. },
  57. "lint": {
  58. "reflinks": true
  59. }
  60. }
  61. }