forked from ghdna/cognito-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.35 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
49
50
51
52
{
"name": "@kaluza-tech/cognito-express",
"version": "3.0.2",
"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": "^0.24.0",
"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": "^8.0.1",
"rewire": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaluza-tech/cognito-express.git"
},
"bugs": {
"url": "https://github.com/ghdna/cognito-express/issues"
},
"homepage": "https://github.com/ghdna/cognito-express#readme",
"directories": {
"lib": "lib",
"test": "test"
}
}