-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
48 lines (48 loc) · 1.34 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
43
44
45
46
47
48
{
"name": "cognito-express",
"version": "3.0.4",
"description": "cognito-express authenticates API requests on a Node-Express application by verifying the signature of AccessToken or IDToken generated by Amazon Cognito.",
"main": "./lib/index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"start": "npm test"
},
"keywords": [
"express",
"aws",
"amazon",
"passport",
"cognito",
"auth",
"authentication",
"identity"
],
"author": "Gary Arora (https://twitter.com/AroraGary)",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"lib/"
],
"dependencies": {
"axios": "^1.6.2",
"jsonwebtoken": "^9.0.0",
"jwk-to-pem": "^2.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^10.2.0",
"rewire": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghdna/cognito-express.git"
},
"bugs": {
"url": "https://github.com/ghdna/cognito-express/issues"
},
"homepage": "https://github.com/ghdna/cognito-express#readme"
}