-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 857 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 857 Bytes
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
{
"name": "aws-lambda-auth",
"version": "0.1.0",
"description": "Make your lambda custom authorizer easier",
"main": "index.js",
"scripts": {
"test": "mocha test",
"lint": "eslint ."
},
"author": {
"name": "Speed and Function",
"email": "opensource@speedandfunction.com",
"url": "https://speedandfunction.com/"
},
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.247.1",
"bluebird": "^3.5.1",
"lodash": "^4.17.10",
"object-hash": "^1.3.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.12.0",
"mocha": "^5.2.0",
"proxyquire": "^2.0.1",
"sinon": "^5.0.10",
"sinon-chai": "^3.1.0"
},
"engines": {
"node": "8.x.x",
"npm": "5.x.x"
}
}