-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.06 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "fastify-totp",
"version": "1.0.0",
"description": "A plugin to handle TOTP (e.g. for 2FA)",
"main": "totp.js",
"scripts": {
"test": "npx tap -Rspec --coverage test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beliven-it/fastify-totp.git"
},
"keywords": [
"fastify",
"plugin",
"totp",
"2fa",
"speakeasy",
"auth"
],
"author": "Beliven",
"license": "MIT",
"bugs": {
"url": "https://github.com/beliven-it/fastify-totp/issues"
},
"homepage": "https://github.com/beliven-it/fastify-totp#readme",
"devDependencies": {
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"fastify": "^3.17.0",
"fastify-sensible": "^3.1.1",
"tap": "^16.0.0"
},
"dependencies": {
"fastify-plugin": "^3.0.0",
"qrcode": "^1.4.4",
"speakeasy": "^2.0.0"
},
"tap": {
"check-coverage": false
}
}