-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
41 lines (41 loc) · 884 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
{
"name": "jsotp",
"version": "1.0.4",
"description": "Javascript One-Time Password module.",
"main": "lib/jsotp.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LanceGin/jsotp.git"
},
"keywords": [
"otp",
"totp",
"hotp",
"rfc6238",
"rfc4226"
],
"author": "lancegin",
"license": "MIT",
"bugs": {
"url": "https://github.com/LanceGin/jsotp/issues"
},
"homepage": "https://github.com/LanceGin/jsotp#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"mocha": "^3.4.2"
},
"dependencies": {
"jssha": "^2.3.1"
}
}