package.json 927 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "ibackuptool",
  3. "version": "4.0.1",
  4. "description": "Read Messages and info from iOS Backups",
  5. "main": "tools/index.js",
  6. "scripts": {
  7. "test": "tap tests",
  8. "start": "node tools/cli.js"
  9. },
  10. "bin": {
  11. "ibackuptool": "tools/cli.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. "buffer-reader": "^0.1.0",
  20. "chalk": "^1.1.3",
  21. "commander": "^6.1.0",
  22. "fs-extra": "^4.0.3",
  23. "json2csv": "^3.11.5",
  24. "plist": "^2.1.0",
  25. "sqlite3": "^4.0.0",
  26. "stat-mode": "^1.0.0",
  27. "strip-ansi": "^4.0.0"
  28. },
  29. "devDependencies": {
  30. "eslint": "^4.19.1",
  31. "eslint-plugin-import": "^2.22.0",
  32. "eslint-plugin-node": "^6.0.1",
  33. "eslint-plugin-promise": "^3.8.0",
  34. "eslint-plugin-standard": "^3.1.0",
  35. "tap": "^14.10.8"
  36. }
  37. }