package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "isobject",
  3. "description": "Returns true if the value is an object and not an array or null.",
  4. "version": "2.1.0",
  5. "homepage": "https://github.com/jonschlinkert/isobject",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/isobject",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/isobject/issues"
  10. },
  11. "license": "MIT",
  12. "files": [
  13. "index.js"
  14. ],
  15. "main": "index.js",
  16. "engines": {
  17. "node": ">=0.10.0"
  18. },
  19. "scripts": {
  20. "test": "mocha"
  21. },
  22. "dependencies": {
  23. "isarray": "1.0.0"
  24. },
  25. "devDependencies": {
  26. "gulp-format-md": "^0.1.9",
  27. "mocha": "^2.4.5"
  28. },
  29. "keywords": [
  30. "check",
  31. "is",
  32. "is-object",
  33. "isobject",
  34. "kind",
  35. "kind-of",
  36. "kindof",
  37. "native",
  38. "object",
  39. "type",
  40. "typeof",
  41. "value"
  42. ],
  43. "verb": {
  44. "related": {
  45. "list": [
  46. "merge-deep",
  47. "extend-shallow",
  48. "is-plain-object",
  49. "kind-of"
  50. ]
  51. },
  52. "toc": false,
  53. "layout": "default",
  54. "tasks": [
  55. "readme"
  56. ],
  57. "plugins": [
  58. "gulp-format-md"
  59. ],
  60. "lint": {
  61. "reflinks": true
  62. },
  63. "reflinks": [
  64. "verb"
  65. ]
  66. }
  67. }