package.json 974 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "isobject",
  3. "description": "Returns true if the value is an object and not an array or null.",
  4. "version": "0.2.0",
  5. "homepage": "https://github.com/jonschlinkert/isobject",
  6. "author": {
  7. "name": "Jon Schlinkert",
  8. "url": "https://github.com/jonschlinkert"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/jonschlinkert/isobject.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/jonschlinkert/isobject/issues"
  16. },
  17. "licenses": [
  18. {
  19. "type": "MIT",
  20. "url": "https://github.com/jonschlinkert/isobject/blob/master/LICENSE-MIT"
  21. }
  22. ],
  23. "keywords": [
  24. "is",
  25. "isobject",
  26. "is-object",
  27. "object",
  28. "type",
  29. "typeof",
  30. "kind",
  31. "kindof",
  32. "value",
  33. "javascript",
  34. "check"
  35. ],
  36. "main": "index.js",
  37. "engines": {
  38. "node": ">=0.10.0"
  39. },
  40. "scripts": {
  41. "test": "mocha -R spec"
  42. },
  43. "devDependencies": {
  44. "verb": "~0.2.6",
  45. "chai": "~1.9.1",
  46. "mocha": "*"
  47. }
  48. }