-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 972 Bytes
/
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
49
50
51
52
{
"name": "twofa",
"version": "0.6.0",
"description": "Two Factor Authencaticator Generator",
"license": "MIT",
"repository": "paulovitin/twofa",
"author": {
"name": "Paulo Reis",
"email": "[email protected]"
},
"bin": {
"twofa": "cli.js"
},
"engines": {
"node": ">=6"
},
"files": [
"cli.js",
"TwoFA.js"
],
"keywords": [
"cli-app",
"cli",
"2fa",
"mfa",
"tfa"
],
"devDependencies": {
"coveralls": "^3.1.0",
"cross-spawn": "^7.0.3",
"jest": "^26.6.0",
"tempy": "^1.0.0"
},
"scripts": {
"test": "jest",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"cli-table": "^0.3.1",
"clipboardy": "^2.3.0",
"commander": "^6.1.0",
"conf": "^7.1.2",
"jimp": "^0.16.1",
"jsqr": "^1.3.1",
"otpauth": "^6.0.8",
"qrcode-terminal": "^0.12.0",
"screencapture": "^0.3.1"
},
"jest": {
"collectCoverage": true
}
}