package.json 728 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "ibackuptool",
  3. "version": "3.0.0",
  4. "description": "Read Messages and info from iOS Backups",
  5. "main": "tools/index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "start": "node tools/index.js"
  9. },
  10. "bin": {
  11. "ibackuptool": "tools/index.js"
  12. },
  13. "preferGlobal": true,
  14. "repository": "https://github.com/richinfante/iphonebackuptools",
  15. "author": "@richinfante",
  16. "license": "MIT",
  17. "dependencies": {
  18. "bplist-parser": "^0.1.1",
  19. "chalk": "^1.1.3",
  20. "commander": "^2.12.2",
  21. "fs-extra": "^4.0.3",
  22. "json2csv": "^3.11.5",
  23. "plist": "^2.0.1",
  24. "sqlite3": "^3.1.8",
  25. "strip-ansi": "^4.0.0"
  26. },
  27. "devDependencies": {
  28. "tap": "^11.1.0"
  29. }
  30. }