package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "parse-url",
  3. "version": "8.1.0",
  4. "description": "An advanced url parser supporting git urls too.",
  5. "main": "./dist/index.js",
  6. "module": "./dist/index.mjs",
  7. "types": "./index.d.ts",
  8. "exports": {
  9. "types": "./index.d.ts",
  10. "require": "./dist/index.js",
  11. "import": "./dist/index.mjs"
  12. },
  13. "directories": {
  14. "example": "example",
  15. "test": "test"
  16. },
  17. "scripts": {
  18. "test": "node test/index.mjs",
  19. "build": "pkgroll"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/IonicaBizau/parse-url.git"
  24. },
  25. "keywords": [
  26. "parse",
  27. "url",
  28. "node",
  29. "git",
  30. "advanced"
  31. ],
  32. "author": "Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)",
  33. "license": "MIT",
  34. "bugs": {
  35. "url": "https://github.com/IonicaBizau/parse-url/issues"
  36. },
  37. "homepage": "https://github.com/IonicaBizau/parse-url",
  38. "devDependencies": {
  39. "normalize-url": "^7.0.3",
  40. "pkgroll": "^1.4.0",
  41. "tester": "^1.3.1"
  42. },
  43. "dependencies": {
  44. "parse-path": "^7.0.0"
  45. },
  46. "files": [
  47. "bin/",
  48. "app/",
  49. "lib/",
  50. "dist/",
  51. "src/",
  52. "scripts/",
  53. "resources/",
  54. "menu/",
  55. "cli.js",
  56. "index.js",
  57. "index.d.ts",
  58. "bloggify.js",
  59. "bloggify.json",
  60. "bloggify/"
  61. ],
  62. "blah": {
  63. "description": [
  64. "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."
  65. ]
  66. }
  67. }