-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "identif",
"version": "0.6.0",
"description": "Helper functions to verify one's identity via personal channels(SMS, Phone, E-Mail and more!)",
"license": "MIT",
"author": {
"name": "Byungjin Park",
"email": "posquit0.bj@gmail.com",
"url": "http://www.posquit0.com"
},
"contributors": [],
"homepage": "https://github.com/posquit0/node-identif",
"repository": {
"type": "git",
"url": "git+https://github.com/posquit0/node-identif.git"
},
"bugs": {
"url": "https://github.com/posquit0/node-identif/issues"
},
"keywords": [
"identification",
"identity",
"identify",
"verification",
"sms",
"email",
"phone",
"sms-verification",
"email-verification",
"2fa",
"mfa",
"authentication"
],
"engines": {
"node": ">=6"
},
"files": [
"index.js",
"lib/"
],
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test jest --verbose",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"lint": "eslint lib test",
"lint:lib": "eslint lib",
"lint:test": "eslint test"
},
"dependencies": {
"debug": "^3.1.0",
"ioredis": "^4.0.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"coveralls": "^3.0.2",
"eslint": "^5.5.0",
"eslint-config-kasa": "^0.4.0",
"jest": "^23.5.0",
"jest-junit": "^5.1.0"
}
}