forked from speakeasyjs/speakeasy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.21 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.21 KB
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
{
"name": "passcode",
"description": "One-time passcode generator (HOTP/TOTP) with URL generation for Google Authenticator",
"version": "1.0.2",
"author": {
"name": "Michael Phan-Ba",
"email": "michael@mikepb.com"
},
"contributors": [{
"name": "Mark Bao",
"email": "mark@markbao.com",
"url": "http://markbao.com"
}, {
"name": "Guy Halford-Thompson",
"email": "guy@cach.me"
}],
"homepage": "https://github.com/mikepb/passcode",
"keywords": [
"authentication",
"google authenticator",
"hmac",
"hotp",
"multi-factor",
"one-time password",
"passwords",
"totp",
"two-factor"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mikepb/passcode.git"
},
"main": "index.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"base32.js": "0.0.1"
},
"keywords": [
"two-factor",
"authentication",
"hotp",
"totp",
"multi-factor",
"hmac",
"one-time password",
"passwords"
],
"devDependencies": {
"jsdoc": "^3.3.1",
"mocha": "^2.2.5"
},
"scripts": {
"test": "mocha",
"doc": "jsdoc -c jsdoc.json && sed -i '' -e 's/․/./g' docs/passcode/*/*.html"
}
}