UNPKG

authy-extractor

Version:

Extract 2FA tokens from Authy

49 lines (48 loc) 1.2 kB
{ "name": "authy-extractor", "description": "Extract 2FA tokens from Authy", "keywords": [ "Authy", "Backup", "2FA" ], "author": "Sebastian Szczepański", "version": "1.1.3", "license": "MIT", "scripts": { "build": "tsc", "format": "prettier-eslint --write \"src/**/*.ts\"", "prepare": "npm run build", "prepublishOnly": "npm run format", "version": "npm run format && git add -A", "postversion": "git push && git push --tags" }, "dependencies": { "axios": "^0.21.1", "inquirer": "^8.0.0", "node-forge": "^0.10.0", "qrcode": "^1.4.4", "uuid": "^8.3.2" }, "devDependencies": { "@types/inquirer": "^7.3.1", "@types/node-forge": "^0.9.7", "@types/qrcode": "^1.4.0", "@types/uuid": "^8.3.0", "@typescript-eslint/eslint-plugin": "^4.24.0", "@typescript-eslint/parser": "^4.24.0", "eslint": "^7.26.0", "eslint-config-airbnb-base": "^14.2.1", "eslint-plugin-import": "^2.23.2", "prettier": "^2.3.0", "prettier-eslint-cli": "^5.0.1", "typescript": "^4.2.4" }, "main": "build/index.js", "files": [ "build/**/*" ], "bin": { "authy-extractor": "build/index.js" } }