package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "assign-symbols",
  3. "description": "Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.",
  4. "version": "1.0.0",
  5. "homepage": "https://github.com/jonschlinkert/assign-symbols",
  6. "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
  7. "repository": "jonschlinkert/assign-symbols",
  8. "bugs": {
  9. "url": "https://github.com/jonschlinkert/assign-symbols/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. "devDependencies": {
  23. "mocha": "^3.0.0"
  24. },
  25. "keywords": [
  26. "assign",
  27. "symbols"
  28. ],
  29. "verb": {
  30. "related": {
  31. "list": [
  32. "assign-deep",
  33. "mixin-deep",
  34. "merge-deep",
  35. "extend-shallow",
  36. "clone-deep"
  37. ]
  38. }
  39. }
  40. }