package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "clone",
  3. "description": "deep cloning of objects and arrays",
  4. "tags": [
  5. "clone",
  6. "object",
  7. "array",
  8. "function",
  9. "date"
  10. ],
  11. "version": "2.1.2",
  12. "repository": {
  13. "type": "git",
  14. "url": "git://github.com/pvorb/node-clone.git"
  15. },
  16. "bugs": {
  17. "url": "https://github.com/pvorb/node-clone/issues"
  18. },
  19. "main": "clone.js",
  20. "author": "Paul Vorbach <paul@vorba.ch> (http://paul.vorba.ch/)",
  21. "contributors": [
  22. "Blake Miner <miner.blake@gmail.com> (http://www.blakeminer.com/)",
  23. "Tian You <axqd001@gmail.com> (http://blog.axqd.net/)",
  24. "George Stagas <gstagas@gmail.com> (http://stagas.com/)",
  25. "Tobiasz Cudnik <tobiasz.cudnik@gmail.com> (https://github.com/TobiaszCudnik)",
  26. "Pavel Lang <langpavel@phpskelet.org> (https://github.com/langpavel)",
  27. "Dan MacTough (http://yabfog.com/)",
  28. "w1nk (https://github.com/w1nk)",
  29. "Hugh Kennedy (http://twitter.com/hughskennedy)",
  30. "Dustin Diaz (http://dustindiaz.com)",
  31. "Ilya Shaisultanov (https://github.com/diversario)",
  32. "Nathan MacInnes <nathan@macinn.es> (http://macinn.es/)",
  33. "Benjamin E. Coe <ben@npmjs.com> (https://twitter.com/benjamincoe)",
  34. "Nathan Zadoks (https://github.com/nathan7)",
  35. "Róbert Oroszi <robert+gh@oroszi.net> (https://github.com/oroce)",
  36. "Aurélio A. Heckert (http://softwarelivre.org/aurium)",
  37. "Guy Ellis (http://www.guyellisrocks.com/)",
  38. "fscherwi (https://fscherwi.github.io)",
  39. "rictic (https://github.com/rictic)",
  40. "Martin Jurča (https://github.com/jurca)",
  41. "Misery Lee <miserylee@foxmail.com> (https://github.com/miserylee)",
  42. "Clemens Wolff (https://github.com/c-w)"
  43. ],
  44. "license": "MIT",
  45. "engines": {
  46. "node": ">=0.8"
  47. },
  48. "dependencies": {},
  49. "devDependencies": {
  50. "nodeunit": "~0.9.0"
  51. },
  52. "optionalDependencies": {},
  53. "scripts": {
  54. "test": "nodeunit test.js"
  55. }
  56. }