-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.17 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"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"
}
}