Files

42 lines
884 B
JSON
Raw Permalink Normal View History

2017-06-28 17:03:25 +08:00
{
"name": "jsotp",
2018-11-06 11:25:26 +08:00
"version": "1.0.4",
2017-06-28 17:03:25 +08:00
"description": "Javascript One-Time Password module.",
2017-06-30 15:47:09 +08:00
"main": "lib/jsotp.js",
2017-06-28 17:03:25 +08:00
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
2017-06-29 14:36:55 +08:00
"test": "mocha --compilers js:babel-core/register",
2018-11-06 11:22:38 +08:00
"build": "babel src -d lib"
2017-06-28 17:03:25 +08:00
},
"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",
2017-06-29 14:36:55 +08:00
"babel-core": "^6.25.0",
2017-06-28 17:03:25 +08:00
"babel-preset-es2015": "^6.24.1",
2017-06-29 14:36:55 +08:00
"babel-preset-stage-0": "^6.24.1",
"mocha": "^3.4.2"
2017-06-29 17:21:34 +08:00
},
"dependencies": {
"jssha": "^2.3.1"
2017-06-28 17:03:25 +08:00
}
}