package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name" : "defined",
  3. "version" : "1.0.0",
  4. "description" : "return the first argument that is `!== undefined`",
  5. "main" : "index.js",
  6. "directories" : {
  7. "example" : "example",
  8. "test" : "test"
  9. },
  10. "dependencies" : {},
  11. "devDependencies" : {
  12. "tape" : "~3.5.0"
  13. },
  14. "scripts" : {
  15. "test" : "tape test/*.js"
  16. },
  17. "testling" : {
  18. "files" : "test/*.js",
  19. "browsers" : {
  20. "ie" : [ 6, 7, 8, 9 ],
  21. "ff" : [ 3.5, 10, 15.0 ],
  22. "chrome" : [ 10, 22 ],
  23. "safari" : [ 5.1 ],
  24. "opera" : [ 12 ]
  25. }
  26. },
  27. "repository" : {
  28. "type" : "git",
  29. "url" : "git://github.com/substack/defined.git"
  30. },
  31. "homepage" : "https://github.com/substack/defined",
  32. "keywords" : [
  33. "undefined",
  34. "short-circuit",
  35. "||",
  36. "or",
  37. "//",
  38. "defined-or"
  39. ],
  40. "author" : {
  41. "name" : "James Halliday",
  42. "email" : "mail@substack.net",
  43. "url" : "http://substack.net"
  44. },
  45. "license" : "MIT"
  46. }