forked from iress/cloudfront-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 995 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
{
"name": "cloudfront-auth",
"version": "1.0.0",
"description": "An AWS Cloudfront Lambda@Edge function to authenticate requests using Google Apps, Microsoft, GitHub login, OKTA & Auth0",
"main": "index.js",
"scripts": {
"test": "cd tests && npm install && cd .. && node tests/tests.js",
"test-ci": "npm ci && mocha './mocha/*.js'",
"build": "npm install && cd build && npm install && cd .. && node build/build.js",
"build-ci": "npm ci --production && cd build && npm ci --production && cd .. && node build/build.js"
},
"author": "Widen Enterprises",
"repository": "github:widen/cloudfront-auth",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"cookie": "^0.3.1",
"es6-dynamic-template": "^2.0.0",
"jsonwebtoken": "^8.1.0",
"jwk-to-pem": "^1.2.6",
"nonce": "^1.0.4",
"querystring": "^0.2.0",
"url": "^0.11.0"
},
"devDependencies": {
"aws-sdk-mock": "^5.1.0",
"mocha": "^8.0.1",
"sinon": "^9.0.2"
}
}