package.json 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. {
  2. "name": "speakingurl",
  3. "version": "14.0.1",
  4. "description": "Generate a slug – transliteration with a lot of options",
  5. "homepage": "http://pid.github.io/speakingurl/",
  6. "github": "http://github.com/pid/speakingurl",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/pid/speakingurl.git"
  10. },
  11. "bugs": {
  12. "url": "https://github.com/pid/speakingurl/issues"
  13. },
  14. "license": "BSD-3-Clause",
  15. "licenses": [{
  16. "type": "BSD",
  17. "url": "https://raw.github.com/pid/speakingurl/master/LICENSE"
  18. }],
  19. "keywords": [
  20. "slug",
  21. "slugify",
  22. "speakingurl",
  23. "transliteration",
  24. "permalink",
  25. "seo",
  26. "url",
  27. "nice url",
  28. "static url",
  29. "clean url",
  30. "pretty url",
  31. "nice looking url",
  32. "user friendly url",
  33. "seo friendly url"
  34. ],
  35. "categories": [
  36. "Utilities",
  37. "Parsers & Compilers"
  38. ],
  39. "scripts": {
  40. "test": "mocha"
  41. },
  42. "author": "Sascha Droste <pid@posteo.net> (https://twitter.com/SaschaDroste)",
  43. "main": "index",
  44. "filename": "speakingurl.min.js",
  45. "dependencies": {},
  46. "devDependencies": {
  47. "gulp": "^3.8.8",
  48. "gulp-bump": "^2.4.0",
  49. "gulp-header": "^1.2.2",
  50. "gulp-jsbeautifier": "^2.0.3",
  51. "gulp-jshint": "^2.0.0",
  52. "gulp-load-plugins": "^1.1.0",
  53. "gulp-mocha": "^4.3.1",
  54. "gulp-rename": "^1.2.0",
  55. "gulp-replace": "^0.6.1",
  56. "gulp-uglify": "^3.0.0",
  57. "jshint": "^2.8.0",
  58. "jshint-stylish": "^2.0.0",
  59. "minimist": "^1.1.0",
  60. "mocha": "^3.0.2",
  61. "should": "^11.1.0"
  62. },
  63. "jam": {
  64. "dependencies": {},
  65. "main": "speakingurl.min.js",
  66. "shim": {
  67. "deps": [],
  68. "exports": [
  69. "getSlug",
  70. "createSlug"
  71. ]
  72. },
  73. "include": [
  74. "speakingurl.min.js",
  75. "README.md"
  76. ]
  77. },
  78. "volo": {
  79. "url": "//cdnjs.cloudflare.com/ajax/libs/speakingurl/{version}/speakingurl.min.js"
  80. },
  81. "engines": {
  82. "node": ">=0.10.0"
  83. },
  84. "directories": {
  85. "example": "examples",
  86. "lib": "lib",
  87. "test": "test"
  88. }
  89. }