package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "mixin-object",
  3. "description": "Mixin the own and inherited properties of other objects onto the first object. Pass an empty object as the first arg to shallow clone.",
  4. "version": "2.0.1",
  5. "homepage": "https://github.com/jonschlinkert/mixin-object",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/mixin-object",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/mixin-object/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. "for-in": "^0.1.3",
  24. "is-extendable": "^0.1.1"
  25. },
  26. "devDependencies": {
  27. "mocha": "^2.2.5",
  28. "should": "^7.0.1"
  29. },
  30. "keywords": [
  31. "assign",
  32. "copy",
  33. "extend",
  34. "key",
  35. "merge",
  36. "mixin",
  37. "object",
  38. "objects",
  39. "prop",
  40. "properties",
  41. "property",
  42. "shallow",
  43. "util",
  44. "value"
  45. ],
  46. "verbiage": {
  47. "related": {
  48. "list": [
  49. "defaults-deep",
  50. "extend-shallow",
  51. "assign-deep",
  52. "mixin-deep",
  53. "merge-deep",
  54. "isobject",
  55. "is-plain-object",
  56. "for-own",
  57. "for-in"
  58. ]
  59. }
  60. }
  61. }