-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.08 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
{
"name": "lambda-social-jwt",
"version": "0.1.0",
"description": "Handle social logins through aws lambda and return json web tokens for microservice architectures",
"main": "index.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "mocha --compilers js:babel-core/register --timeout 20500 --recursive tests/"
},
"repository": "https://github.com/usulix/lambda-social-jwt.git",
"author": "Gregory Gray <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.1",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"eslint": "^4.3.0",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"flow-bin": "^0.49.1",
"json-loader": "^0.5.4",
"mocha": "^3.4.2",
"webpack": "^3.0.0"
},
"dependencies": {
"firebase-admin": "^5.0.0",
"oauth": "^0.9.15",
"request": "^2.81.0"
}
}