package.json 705 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "clone-stats",
  3. "description": "Safely clone node's fs.Stats instances without losing their class methods",
  4. "version": "1.0.0",
  5. "main": "index.js",
  6. "browser": "index.js",
  7. "dependencies": {},
  8. "devDependencies": {
  9. "tape": "~2.3.2"
  10. },
  11. "scripts": {
  12. "test": "node test"
  13. },
  14. "author": "Hugh Kennedy <hughskennedy@gmail.com> (http://hughsk.io/)",
  15. "license": "MIT",
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/hughsk/clone-stats"
  19. },
  20. "bugs": {
  21. "url": "https://github.com/hughsk/clone-stats/issues"
  22. },
  23. "homepage": "https://github.com/hughsk/clone-stats",
  24. "keywords": [
  25. "stats",
  26. "fs",
  27. "clone",
  28. "copy",
  29. "prototype"
  30. ]
  31. }