package.json 654 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "normalize-url",
  3. "version": "3.3.0",
  4. "description": "Normalize a URL",
  5. "license": "MIT",
  6. "repository": "sindresorhus/normalize-url",
  7. "author": {
  8. "name": "Sindre Sorhus",
  9. "email": "sindresorhus@gmail.com",
  10. "url": "sindresorhus.com"
  11. },
  12. "engines": {
  13. "node": ">=6"
  14. },
  15. "scripts": {
  16. "test": "xo && nyc ava"
  17. },
  18. "files": [
  19. "index.js"
  20. ],
  21. "keywords": [
  22. "normalize",
  23. "url",
  24. "uri",
  25. "address",
  26. "string",
  27. "normalization",
  28. "normalisation",
  29. "query",
  30. "querystring",
  31. "simplify",
  32. "strip",
  33. "trim",
  34. "canonical"
  35. ],
  36. "devDependencies": {
  37. "ava": "*",
  38. "coveralls": "^3.0.0",
  39. "nyc": "^12.0.2",
  40. "xo": "*"
  41. }
  42. }