package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "parse-url",
  3. "version": "6.0.0",
  4. "description": "An advanced url parser supporting git urls too.",
  5. "main": "lib/index.js",
  6. "directories": {
  7. "example": "example",
  8. "test": "test"
  9. },
  10. "scripts": {
  11. "test": "node test"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git+https://github.com/IonicaBizau/parse-url.git"
  16. },
  17. "keywords": [
  18. "parse",
  19. "url",
  20. "node",
  21. "git",
  22. "advanced"
  23. ],
  24. "author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/IonicaBizau/parse-url/issues"
  28. },
  29. "homepage": "https://github.com/IonicaBizau/parse-url",
  30. "devDependencies": {
  31. "tester": "^1.3.1"
  32. },
  33. "dependencies": {
  34. "is-ssh": "^1.3.0",
  35. "normalize-url": "^6.1.0",
  36. "parse-path": "^4.0.0",
  37. "protocols": "^1.4.0"
  38. },
  39. "files": [
  40. "bin/",
  41. "app/",
  42. "lib/",
  43. "dist/",
  44. "src/",
  45. "scripts/",
  46. "resources/",
  47. "menu/",
  48. "cli.js",
  49. "index.js",
  50. "bloggify.js",
  51. "bloggify.json",
  52. "bloggify/"
  53. ],
  54. "blah": {
  55. "description": [
  56. "For low-level path parsing, check out [`parse-path`](https://github.com/IonicaBizau/parse-path). This very module is designed to parse urls. By default the urls are normalized."
  57. ]
  58. }
  59. }