forked from clay/amphora-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
36
37
38
39
40
41
42
{
"name": "amphora-auth",
"version": "2.0.0",
"description": "An auth adapter for Amphora",
"main": "index.js",
"scripts": {
"lint": "eslint --max-warnings 0 *.js",
"test": "npm run lint && jest",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"release": "./.circleci/scripts/release.sh"
},
"author": "",
"license": "MIT",
"dependencies": {
"basic-auth": "^2.0.1",
"bcryptjs": "^2.4.3",
"bluebird": "^3.5.3",
"clay-log": "^1.3.1",
"connect-redis": "^3.4.0",
"express-flash": "0.0.2",
"express-session": "^1.15.6",
"passport": "^0.3.2",
"passport-cognito-oauth2": "^0.1.1",
"passport-google-oauth": "^1.0.0",
"passport-http-header-token": "^1.1.0",
"passport-ldapauth": "^2.1.1",
"passport-local": "^1.0.0",
"passport-slack": "0.0.7",
"passport-twitter": "^1.0.4",
"through2-map": "^3.0.0"
},
"devDependencies": {
"coveralls": "^3.0.3",
"eslint": "^5.12.0",
"jest": "^24.1.0",
"levelup": "^1.3.9",
"memdown": "^1.4.0"
},
"peerDependencies": {
"clayhandlebars": "5"
}
}