jsotp/package.json
2018-11-06 11:25:26 +08:00

42 lines
884 B
JSON

{
"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"
}
}