package.json 522 B

123456789101112131415161718192021222324
  1. {
  2. "name": "url-to-options",
  3. "description": "Convert a WHATWG URL to an http(s).request options object.",
  4. "version": "1.0.1",
  5. "license": "MIT",
  6. "author": "Steven Vachon <contact@svachon.com> (https://www.svachon.com/)",
  7. "repository": "stevenvachon/url-to-options",
  8. "devDependencies": {
  9. "universal-url": "^1.0.0-alpha"
  10. },
  11. "engines": {
  12. "node": ">= 4"
  13. },
  14. "scripts": {
  15. "test": "node test.js"
  16. },
  17. "files": ["index.js"],
  18. "keywords": [
  19. "http",
  20. "https",
  21. "url",
  22. "whatwg"
  23. ]
  24. }