forked from speakeasyjs/speakeasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "@xourse/speakeasy",
"description": "Two-factor authentication for Node.js. One-time passcode generator (HOTP/TOTP) with support for Google Authenticator.",
"version": "2.0.1",
"author": {
"name": "Mark Bao & Speakeasy Contributors",
"email": "mark@markbao.com"
},
"contributors": [{
"name": "Michael Phan-Ba",
"email": "michael@mikepb.com"
}, {
"name": "Guy Halford-Thompson",
"email": "guy@cach.me"
}],
"homepage": "http://github.com/XourseDev/speakeasy",
"bugs": "https://github.com/XourseDev/speakeasy/issues",
"keywords": [
"authentication",
"google authenticator",
"hmac",
"hotp",
"multi-factor",
"one-time password",
"passwords",
"totp",
"two factor",
"two-factor",
"two-factor authentication"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/XourseDev/speakeasy.git"
},
"main": "index.js",
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"base32.js": "0.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"jsdoc": "^3.3.1",
"mocha": "^2.2.5",
"semistandard": "^7.0.5",
"snazzy": "^2.0.1"
},
"scripts": {
"test": "mocha",
"doc": "jsdoc -c jsdoc.json && sed -i '' -e 's/․/./g' docs/speakeasy/*/*.html",
"cover": "istanbul cover _mocha -- test/* -R spec",
"lint": "semistandard --verbose | snazzy"
}
}