@squeep/totp
Version:
A minimal TOTP/HOTP helper.
44 lines (43 loc) • 821 B
JSON
{
"name": "@squeep/totp",
"version": "1.1.6",
"description": "A minimal TOTP/HOTP helper.",
"main": "index.js",
"scripts": {
"audit": "npm audit",
"coverage": "nyc npm test",
"coverage-check": "nyc check-coverage",
"eslint": "eslint index.js lib",
"test": "mocha --recursive",
"prepare": "husky"
},
"keywords": [
"OTP",
"TOTP",
"HOTP",
"OATH",
"rfc4226",
"rfc6238",
"2FA"
],
"engines": {
"node": ">14"
},
"files": [
"lib/**"
],
"author": "Justin Wind <jwind-npm@squeep.com>",
"license": "ISC",
"devDependencies": {
"@squeep/eslint-config": "^1",
"eslint": "^9",
"husky": "^9",
"mocha": "^10",
"nyc": "^17",
"sinon": "^19"
},
"dependencies": {
"base32.js": "^0.1.0",
"qrcode-svg": "^1.1.0"
}
}