Skip to main content
Module

x/otpauth/package.json

One Time Password (HOTP/TOTP) library for Node.js, Deno and browsers.
Go to Latest
File
{ "name": "otpauth", "version": "5.0.6", "description": "One Time Password (HOTP/TOTP) library for Node.js and browser", "keywords": [ "otp", "hotp", "totp", "one time password", "2fa", "2 factor", "two factor", "two-factor", "2step", "2 step", "two step", "two-step", "auth", "authenticator", "google authenticator" ], "author": "Héctor Molinero Fernández <hector@molinero.dev>", "license": "MIT", "homepage": "https://github.com/hectorm/otpauth", "repository": { "type": "git", "url": "https://github.com/hectorm/otpauth.git" }, "bugs": { "url": "https://github.com/hectorm/otpauth/issues" }, "main": "dist/otpauth.js", "types": "types/index.d.ts", "files": [ "/dist", "/src", "/types" ], "scripts": { "lint": "eslint --fix .", "build": "webpack --display-reasons", "test:browser:unminified": "karma start", "test:browser:minified": "IS_MINIFIED=true karma start", "test:browser": "run-s test:browser:*", "test:node:unminified": "mocha --reporter dot", "test:node:minified": "IS_MINIFIED=true mocha --reporter dot", "test:node": "run-s test:node:*", "test": "run-s test:*", "docs": "rimraf docs && documentation build ./src/** -f html -o ./docs/", "dist": "run-s lint build test docs", "version": "run-s dist && git add -A dist docs" }, "dependencies": {}, "devDependencies": { "@babel/core": "~7.8.6", "@babel/preset-env": "~7.8.6", "babel-loader": "~8.0.6", "chai": "~4.2.0", "documentation": "~12.1.4", "eslint": "~6.8.0", "eslint-config-airbnb-base": "~14.0.0", "eslint-config-hectorm": "~1.0.3", "eslint-plugin-import": "~2.20.1", "karma": "~4.4.1", "karma-chai": "~0.1.0", "karma-chrome-launcher": "~3.1.0", "karma-firefox-launcher": "~1.3.0", "karma-mocha": "~1.3.0", "mocha": "~7.1.0", "npm-run-all": "~4.1.5", "rimraf": "~3.0.2", "sjcl": "1.0.8", "terser-webpack-plugin": "~2.3.5", "tmp": "~0.1.0", "webpack": "~4.42.0", "webpack-cli": "~3.3.11" }, "babel": { "presets": [ "@babel/preset-env" ] }, "browserslist": [ "Maintained Node versions", "Last 2 versions and not dead", "Firefox ESR" ]}