설명 없음

package.json 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "object.defaults",
  3. "description": "Like `extend` but only copies missing properties/values to the target object.",
  4. "version": "1.1.0",
  5. "homepage": "https://github.com/jonschlinkert/object.defaults",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "contributors": [
  8. "Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)",
  9. "Sobolev Nikita <mail@sobolevn.me> (https://github.com/sobolevn)"
  10. ],
  11. "repository": "jonschlinkert/object.defaults",
  12. "bugs": {
  13. "url": "https://github.com/jonschlinkert/object.defaults/issues"
  14. },
  15. "license": "MIT",
  16. "files": [
  17. "index.js",
  18. "immutable.js",
  19. "mutable.js"
  20. ],
  21. "main": "index.js",
  22. "engines": {
  23. "node": ">=0.10.0"
  24. },
  25. "scripts": {
  26. "test": "mocha"
  27. },
  28. "dependencies": {
  29. "array-each": "^1.0.1",
  30. "array-slice": "^1.0.0",
  31. "for-own": "^1.0.0",
  32. "isobject": "^3.0.0"
  33. },
  34. "devDependencies": {
  35. "gulp-format-md": "^0.1.11",
  36. "mocha": "^3.2.0"
  37. },
  38. "keywords": [
  39. "copy",
  40. "default",
  41. "defaults",
  42. "extend",
  43. "javascript",
  44. "js",
  45. "merge",
  46. "object",
  47. "properties",
  48. "property",
  49. "util",
  50. "utils",
  51. "value",
  52. "values"
  53. ],
  54. "verb": {
  55. "toc": false,
  56. "layout": "default",
  57. "tasks": [
  58. "readme"
  59. ],
  60. "plugins": [
  61. "gulp-format-md"
  62. ],
  63. "lint": {
  64. "reflinks": true
  65. }
  66. }
  67. }