package.json 706 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "clonedeep",
  3. "version": "2.0.0",
  4. "description": "Deep copy library for any data structure",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/joshghent/deepClone.git"
  12. },
  13. "keywords": [
  14. "deep",
  15. "clone",
  16. "copy",
  17. "data",
  18. "data structures",
  19. "deep copy",
  20. "deep clone"
  21. ],
  22. "author": "Josh Ghent <me@joshghent.com> (https://joshghent.com)",
  23. "license": "MIT",
  24. "bugs": {
  25. "url": "https://github.com/joshghent/deepClone/issues"
  26. },
  27. "homepage": "https://github.com/joshghent/deepClone#readme",
  28. "devDependencies": {
  29. "chai": "3.5.0",
  30. "mocha": "3.1.1"
  31. }
  32. }