-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
95 lines (95 loc) · 2.15 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@akanass/rx-otp",
"version": "2.0.0",
"description": "HMAC-based (HOTP) and Time-based (TOTP) One-Time Password manager. Works with Google Authenticator for Two-Factor Authentication.",
"main": "commonjs/index.js",
"module": "esm2015/index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"pretest": "make clean && make pretest",
"test": "make test",
"coveralls": "make coveralls",
"clean": "make clean",
"packaging": "make packaging",
"prebuild": "make clean && make pretest && make test",
"build": "make commonjs && make esm2015",
"postbuild": "make packaging"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "[email protected]:akanass/rx-otp.git"
},
"keywords": [
"One-Time Password",
"OTP",
"HOTP",
"RFC 4226",
"TOTP",
"RFC 6238",
"Google Authenticator",
"Two-Factor Authentication",
"RFC 3548",
"RxJS",
"Rx",
"ReactiveX",
"Observable",
"Observer",
"Streams",
"Async",
"ES2015",
"ES2016",
"ES2017",
"ES2018",
"ES6",
"ES7",
"ES8",
"ES9",
"Typescript",
"Browser"
],
"author": {
"name": "Nicolas Jessel",
"email": "[email protected]",
"url": "https://github.com/akanass"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/akanass/rx-otp/issues"
},
"homepage": "https://github.com/akanass/rx-otp#readme",
"dependencies": {
"@types/node": "^16.10.3",
"@types/qr-image": "^3.2.4",
"@types/uid-safe": "^2.1.2",
"ajv": "^8.6.3",
"ajv-keywords": "^5.0.0",
"big-integer": "^1.6.49",
"convert-base": "^0.1.0",
"pad-component": "^0.0.1",
"qr-image": "^3.2.0",
"thirty-two": "^1.0.2"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"coveralls": "^3.1.1",
"fs-extra": "^10.0.0",
"jest": "^27.2.5",
"rimraf": "^3.0.2",
"rxjs": "^7.4.0",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslint": "^6.1.3",
"typescript": "^4.4.3"
},
"peerDependencies": {
"rxjs": "^7.4.0"
},
"engines": {
"node": ">=7.0.0"
}
}