package.json 593 B

123456789101112131415161718192021222324
  1. {
  2. "name": "merge",
  3. "version": "1.2.1",
  4. "author": "yeikos",
  5. "description": "Merge multiple objects into one, optionally creating a new cloned object. Similar to the jQuery.extend but more flexible. Works in Node.js and the browser.",
  6. "main": "merge.js",
  7. "license": "MIT",
  8. "homepage": "https://github.com/yeikos/js.merge",
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/yeikos/js.merge.git"
  12. },
  13. "keywords": [
  14. "merge",
  15. "recursive",
  16. "extend",
  17. "clone",
  18. "object",
  19. "browser"
  20. ],
  21. "scripts": {
  22. "test": "cd tests; node index.js"
  23. }
  24. }