Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

bower.json 859B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "uri-js",
  3. "description": "An RFC 3986/3987 compliant, scheme extendable URI/IRI parsing/validating/resolving library for JavaScript.",
  4. "main": "dist/es5/uri.all.js",
  5. "moduleType": [
  6. "globals",
  7. "amd",
  8. "node",
  9. "es6"
  10. ],
  11. "authors": [
  12. "Gary Court <gary.court@gmail.com>"
  13. ],
  14. "license": "BSD-2-Clause",
  15. "keywords": [
  16. "URI",
  17. "IRI",
  18. "IDN",
  19. "URN",
  20. "HTTP",
  21. "HTTPS",
  22. "MAILTO",
  23. "RFC3986",
  24. "RFC3987",
  25. "RFC5891",
  26. "RFC2616",
  27. "RFC2818",
  28. "RFC2141",
  29. "RFC4122",
  30. "RFC6068"
  31. ],
  32. "homepage": "https://github.com/garycourt/uri-js",
  33. "repository": {
  34. "type": "git",
  35. "url": "http://github.com/garycourt/uri-js"
  36. },
  37. "dependencies": {
  38. "punycode": "^2.1.0"
  39. },
  40. "ignore": [
  41. "**/.*",
  42. "node_modules",
  43. "bower_components",
  44. "test",
  45. "tests"
  46. ]
  47. }