package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "parse-path",
  3. "version": "4.0.3",
  4. "description": "Parse paths (local paths, urls: ssh/git/etc)",
  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-path.git"
  16. },
  17. "keywords": [
  18. "parse",
  19. "path",
  20. "url",
  21. "node",
  22. "git",
  23. "advanced"
  24. ],
  25. "author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/IonicaBizau/parse-path/issues"
  29. },
  30. "homepage": "https://github.com/IonicaBizau/parse-path",
  31. "devDependencies": {
  32. "tester": "^1.3.1"
  33. },
  34. "dependencies": {
  35. "is-ssh": "^1.3.0",
  36. "protocols": "^1.4.0",
  37. "qs": "^6.9.4",
  38. "query-string": "^6.13.8"
  39. },
  40. "files": [
  41. "bin/",
  42. "app/",
  43. "lib/",
  44. "dist/",
  45. "src/",
  46. "scripts/",
  47. "resources/",
  48. "menu/",
  49. "cli.js",
  50. "index.js",
  51. "bloggify.js",
  52. "bloggify.json",
  53. "bloggify/"
  54. ]
  55. }