diff options
author | Minteck <contact@minteck.org> | 2022-08-10 10:38:44 +0200 |
---|---|---|
committer | Minteck <contact@minteck.org> | 2022-08-10 10:38:44 +0200 |
commit | c6dbf0450566c40efc4a26f4f0717452b6ef95cd (patch) | |
tree | b4be2d508223820d0a77d5a3e35e82684da3b6ec /node_modules/node-2fa/package.json | |
download | hornchat-c6dbf0450566c40efc4a26f4f0717452b6ef95cd.tar.gz hornchat-c6dbf0450566c40efc4a26f4f0717452b6ef95cd.tar.bz2 hornchat-c6dbf0450566c40efc4a26f4f0717452b6ef95cd.zip |
Diffstat (limited to 'node_modules/node-2fa/package.json')
-rw-r--r-- | node_modules/node-2fa/package.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/node_modules/node-2fa/package.json b/node_modules/node-2fa/package.json new file mode 100644 index 0000000..351a128 --- /dev/null +++ b/node_modules/node-2fa/package.json @@ -0,0 +1,58 @@ +{ + "name": "node-2fa", + "version": "2.0.3", + "description": "Easy 2-Factor Integration For Node.js", + "main": "dist/index.js", + "types": "dist/index.d.ts", + "private": false, + "scripts": { + "test": "eslint . --fix&&jest", + "prepublishOnly": "npm run test&&npm run build", + "build": "tsc" + }, + "files": [ + "dist", + "package.json", + "readme.md" + ], + "repository": { + "type": "git", + "url": "git+https://github.com/jeremyscalpello/node-2fa" + }, + "keywords": [ + "auth", + "2fa", + "mfa", + "token", + "key", + "base32", + "code", + "generator" + ], + "contributors": [ + "Jeremy Scalpello <jeremy@scalpello.info>", + "Alistair Smith <hey@alistair.cloud>" + ], + "license": "Apache-2.0", + "homepage": "https://github.com/jeremyscalpello/node-2fa#readme", + "dependencies": { + "@types/notp": "^2.0.0", + "notp": "^2.0.3", + "thirty-two": "1.0.2", + "tslib": "^2.1.0" + }, + "devDependencies": { + "@types/jest": "^26.0.20", + "@types/node": "^14.14.20", + "@typescript-eslint/eslint-plugin": "^4.12.0", + "@typescript-eslint/parser": "^4.12.0", + "eslint": "^7.17.0", + "jest": "^26.6.3", + "prettier": "^2.2.1", + "ts-jest": "^26.4.4", + "typescript": "^4.1.3" + }, + "prettier": { + "printWidth": 120 + } +} |