-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "jwt-mongo-sms",
"version": "2.4.2",
"description": "Authentication using JSON web tokens, Mongo DB, and Twilio SMS",
"license": "ISC",
"author": "Poetic Systems",
"contributors": [
"Evan Corl <[email protected]>"
],
"repository": {
"type": "git",
"url": "https://github.com/poetic-labs/jwt-mongo-sms"
},
"keywords": [
"auth",
"authentication",
"login",
"jwt",
"json",
"web",
"token",
"mongo",
"sms",
"twilio",
"passport",
"graphql",
"phone"
],
"main": "build/index.js",
"scripts": {
"lint": "eslint . --ext .js",
"build": "babel src --out-dir build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"jwt-simple": "^0.5.1",
"moment": "^2.18.1",
"mongodb": "^2.2.31",
"passport": "^0.4.0",
"passport-jwt": "^3.0.0",
"twilio": "^3.7.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.8.0",
"eslint-config-airbnb-base": "^12.0.1",
"eslint-plugin-import": "^2.7.0"
}
}