-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 1004 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
{
"name": "simpleotp",
"version": "1.0.0",
"description": "OTP implementation according to rfc 4996 and rfc 6238",
"main": "./lib/index.js",
"engines": {
"node": ">6.9.4"
},
"scripts": {
"lint": "eslint **/*.js",
"test": "mocha test/*/*.js",
"coverage": "nyc mocha test/*/*.js --timeout=3000",
"doc": "jsdoc -c jsdoc.json -d docs -e utf8"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^6.8.0",
"jsdoc": "^3.6.3",
"mocha": "^7.1.1",
"nyc": "^14.1.1"
},
"author": "Xavier Renard <xagithub@gmail.com>",
"keywords": [
"otp",
"hotp",
"totp",
"hmac",
"rfc4996",
"rfc_6238"
],
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/xarenard/simpleotp/issues",
"email": "xagithub@gmail.com"
},
"license": "MIT",
"directories": {
"lib": "lib",
"doc": "docs",
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/xarenard/simpleotp.git"
}
}