package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. {
  2. "name": "is2",
  3. "version": "2.0.1",
  4. "description": "A type checking library where each exported function returns either true or false and does not throw. Also added tests.",
  5. "license": "MIT",
  6. "tags": [
  7. "type",
  8. "check",
  9. "checker",
  10. "checking",
  11. "utilities",
  12. "network",
  13. "networking",
  14. "credit",
  15. "card",
  16. "validation"
  17. ],
  18. "keywords": [
  19. "type",
  20. "check",
  21. "checker",
  22. "checking",
  23. "utilities",
  24. "network",
  25. "networking",
  26. "credit",
  27. "card",
  28. "validation"
  29. ],
  30. "author": "Enrico Marino <enrico.marino@email.com>",
  31. "maintainers": "Edmond Meinfelder <edmond@stdarg.com>, Chris Oyler <christopher.oyler@gmail.com>",
  32. "homepage": "http://github.com/stdarg/is2",
  33. "repository": {
  34. "type": "git",
  35. "url": "git@github.com:stdarg/is2.git"
  36. },
  37. "bugs": {
  38. "url": "http://github.com/stdarg/is/issues"
  39. },
  40. "main": "./index.js",
  41. "scripts": {
  42. "test": "./node_modules/.bin/mocha -C --reporter list tests.js"
  43. },
  44. "engines": {
  45. "node": ">=v0.10.0"
  46. },
  47. "dependencies": {
  48. "deep-is": "^0.1.3",
  49. "ip-regex": "^2.1.0",
  50. "is-url": "^1.2.2"
  51. },
  52. "devDependencies": {
  53. "jsdom": "0.5.0",
  54. "mocha": "5.0.1",
  55. "mongodb": "3.0.2"
  56. }
  57. }