forked from TimothyJones/github-cognito-openid-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "github-openid-wrapper",
"version": "1.0.0",
"description": "A wrapper to enable an OpenID consumer to talk to github (which only provides OAuth2.0)",
"main": "src/web/app.js",
"scripts": {
"test": "jest --runInBand --coverage",
"test-dev": "jest ---runInBand --watch",
"start": "nodemon src/web/app.js",
"lint": "eslint 'src/**' --ext .js ",
"coverage": "jest --coverage"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.3",
"colors": "^1.3.2",
"express": "^4.16.3",
"fs": "0.0.1-security",
"js-base64": "^2.4.8",
"json-web-key": "^0.3.0",
"jsonwebtoken": "^8.3.0",
"jsrsasign": "^8.0.12",
"jwk-to-pem": "^2.0.0",
"serverless": "^1.26.0",
"serverless-http": "^1.5.2"
},
"devDependencies": {
"@pact-foundation/pact": "^5.9.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-jest-diff": "^1.0.2",
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.4.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.22.0",
"jest": "^23.5.0",
"nodemon": "^1.18.3",
"prettier": "^1.14.2",
"serverless-offline": "^3.16.0"
},
"engines": {
"node": ">=10"
}
}