forked from jagzmz/passport-otp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "passport-otp",
"version": "1.0.1",
"description": "Phone OTP authentication via passport.",
"main": "index.js",
"scripts": {
"test": "mocha --require ts-node/register --watch-extensions ts,tsx \"test/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/saurabhg22/passport-otp.git"
},
"keywords": [
"passport",
"otp"
],
"author": "Saurabh Gupta",
"license": "ISC",
"bugs": {
"url": "https://github.com/saurabhg22/passport-otp/issues"
},
"homepage": "https://github.com/saurabhg22/passport-otp#readme",
"dependencies": {
"bcrypt": "^3.0.7",
"http-status-codes": "^1.4.0",
"lodash": "^4.17.15",
"loopback": "^3.26.0",
"moment": "^2.24.0",
"nodemailer": "^6.4.2",
"passport-strategy": "^1.0.0",
"speakeasy": "^2.0.0",
"status-codes": "git+ssh://git-codecommit.ap-southeast-1.amazonaws.com/v1/repos/status-codes",
"twilio": "^3.39.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.0.1",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
}
}