-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 848 Bytes
/
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
{
"name": "parse-otp-message",
"version": "1.0.2",
"description": "Parses OTP messages for a verification code and service provider.",
"main": "index.js",
"repository": "transitive-bullshit/parse-otp-message",
"author": "Travis Fischer <travis@automagical.ai>",
"license": "MIT",
"reveal": true,
"scripts": {
"test": "ava -v && standard"
},
"engines": {
"node": ">=4"
},
"keywords": [
"verify",
"verification",
"confirmation",
"activation",
"authentication",
"auth",
"code",
"pin",
"otp",
"login",
"security",
"number",
"phone",
"phone number",
"sms",
"2fac",
"2factor",
"2-fac",
"2-factor",
"2-step"
],
"devDependencies": {
"ava": "^0.25.0",
"standard": "^11.0.0"
},
"dependencies": {
"stopwords": "^0.0.9"
}
}