package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "requires-port",
  3. "version": "1.0.0",
  4. "description": "Check if a protocol requires a certain port number to be added to an URL.",
  5. "main": "index.js",
  6. "scripts": {
  7. "100%": "istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
  8. "test-travis": "istanbul cover _mocha --report lcovonly -- test.js",
  9. "coverage": "istanbul cover _mocha -- test.js",
  10. "watch": "mocha --watch test.js",
  11. "test": "mocha test.js"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "https://github.com/unshiftio/requires-port"
  16. },
  17. "keywords": [
  18. "port",
  19. "require",
  20. "http",
  21. "https",
  22. "ws",
  23. "wss",
  24. "gopher",
  25. "file",
  26. "ftp",
  27. "requires",
  28. "requried",
  29. "portnumber",
  30. "url",
  31. "parsing",
  32. "validation",
  33. "cows"
  34. ],
  35. "author": "Arnout Kazemier",
  36. "license": "MIT",
  37. "bugs": {
  38. "url": "https://github.com/unshiftio/requires-port/issues"
  39. },
  40. "homepage": "https://github.com/unshiftio/requires-port",
  41. "devDependencies": {
  42. "assume": "1.3.x",
  43. "istanbul": "0.4.x",
  44. "mocha": "2.3.x",
  45. "pre-commit": "1.1.x"
  46. }
  47. }