-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 971 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 971 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
38
39
40
41
42
{
"name": "passport-cognito",
"version": "0.2.2",
"description": "Express passport module for Cognito User Pools",
"main": "./lib/index.js",
"scripts": {
"test": "nyc mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kndt84/passport-cognito.git"
},
"keywords": [
"amazon",
"aws",
"passport",
"cognito",
"auth",
"authentication",
"identity"
],
"author": "Takashi Kaneda",
"license": "MIT",
"bugs": {
"url": "https://github.com/kndt84/passport-cognito/issues"
},
"homepage": "https://github.com/kndt84/passport-cognito#readme",
"dependencies": {
"amazon-cognito-identity-js": "3.2.1",
"aws-sdk": "^2.597.0",
"passport-strategy": "^1.0.0",
"util": "^0.12.1"
},
"devDependencies": {
"@zhaow-de/chai-passport-strategy": "^1.3.2",
"assert": "^2.0.0",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"node-fetch": "^2.6.1",
"nyc": "^15.1.0"
}
}