package.json 649 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "isurl",
  3. "description": "Checks whether a value is a WHATWG URL.",
  4. "version": "1.0.0",
  5. "license": "MIT",
  6. "author": "Steven Vachon <contact@svachon.com> (https://www.svachon.com/)",
  7. "repository": "stevenvachon/isurl",
  8. "dependencies": {
  9. "has-to-string-tag-x": "^1.2.0",
  10. "is-object": "^1.0.1"
  11. },
  12. "devDependencies": {
  13. "chai": "^4.0.2",
  14. "mocha": "^3.4.2",
  15. "semver": "^5.3.0",
  16. "universal-url": "^1.0.0"
  17. },
  18. "engines": {
  19. "node": ">= 4"
  20. },
  21. "scripts": {
  22. "test": "mocha test --check-leaks --bail"
  23. },
  24. "files": [
  25. "index.js"
  26. ],
  27. "keywords": [
  28. "uri",
  29. "url",
  30. "whatwg"
  31. ]
  32. }