forked from kopertop/lambda-jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 847 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
{
"name": "lambda-jwt",
"version": "0.1.0",
"description": "API Gateway Lambda function to support JSON Web Tokens",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kopertop/lambda-jwt.git"
},
"keywords": [
"Authentication",
"JWT",
"JSON",
"Lambda",
"AWS"
],
"author": "Chris Moyer <cmoyer@aci.info>",
"license": "ISC",
"bugs": {
"url": "https://github.com/kopertop/lambda-jwt/issues"
},
"homepage": "https://github.com/kopertop/lambda-jwt#readme",
"dependencies": {
"jsonwebtoken": "^5.5.4"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-aws": "^0.6.1",
"grunt-aws-lambda": "^0.11.0",
"grunt-env": "^0.4.4",
"load-grunt-tasks": "^3.4.0"
}
}