package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "is-object",
  3. "version": "1.0.1",
  4. "description": "Checks whether a value is an object",
  5. "keywords": [],
  6. "author": "Raynos <raynos2@gmail.com>",
  7. "repository": "git://github.com/ljharb/is-object.git",
  8. "main": "index",
  9. "homepage": "https://github.com/ljharb/is-object",
  10. "contributors": [
  11. {
  12. "name": "Raynos"
  13. },
  14. {
  15. "name": "Jordan Harband",
  16. "url": "https://github.com/ljharb"
  17. }
  18. ],
  19. "bugs": {
  20. "url": "https://github.com/ljharb/is-object/issues",
  21. "email": "ljharb@gmail.com"
  22. },
  23. "dependencies": {},
  24. "devDependencies": {
  25. "tape": "~2.14.0",
  26. "covert": "~1.0.0",
  27. "jscs": "~1.6.0"
  28. },
  29. "license": "MIT",
  30. "licenses": [
  31. {
  32. "type": "MIT",
  33. "url": "http://github.com/ljharb/is-object/raw/master/LICENSE"
  34. }
  35. ],
  36. "scripts": {
  37. "test": "npm run lint && node test/index.js && npm run coverage-quiet",
  38. "coverage": "covert test/index.js",
  39. "coverage-quiet": "covert test/index.js --quiet",
  40. "lint": "jscs *.js */*.js"
  41. },
  42. "testling": {
  43. "files": "test/index.js",
  44. "browsers": [
  45. "ie/6..latest",
  46. "firefox/3..6",
  47. "firefox/16..latest",
  48. "firefox/nightly",
  49. "chrome/22..latest",
  50. "chrome/canary",
  51. "opera/10.0",
  52. "opera/11..latest",
  53. "opera/next",
  54. "safari/4..latest",
  55. "ipad/6.0..latest",
  56. "iphone/6.0..latest"
  57. ]
  58. }
  59. }