forked from TimothyJones/github-cognito-openid-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 2.05 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "slack-cognito-openid-wrapper",
"version": "1.1.0",
"description": "A wrapper to enable AWS Cognito User Pools (which requires OpenID Connect) to talk to Slack (which only provides OAuth2.0)",
"main": "dist-web/server.js",
"repository": {
"type": "git",
"url": "https://github.com/TimothyJones/github-cognito-openid-wrapper.git"
},
"scripts": {
"build": "webpack",
"test": "jest --runInBand --coverage",
"test-dev": "jest --runInBand --watch",
"start": "webpack --watch --display errors-only",
"lint": "eslint 'src/**' --ext .js",
"preinstall": "./scripts/create-key.sh",
"prebuild-dist": "npm run lint && npm run test",
"build-dist": "npm run build",
"predeploy": "npm run build-dist",
"deploy": "./scripts/deploy.sh",
"coverage": "jest --runInBand --coverage",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"body-parser": "^1.18.3",
"colors": "^1.3.2",
"express": "^4.16.3",
"json-web-key": "^0.3.0",
"jsonwebtoken": "^8.3.0",
"snyk": "^1.232.0",
"winston": "^3.2.1",
"winston-splunk-httplogger": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@pact-foundation/pact": "^9.1.0",
"babel-jest": "^24.1.0",
"babel-loader": "^8.0.2",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-jest-diff": "^1.0.2",
"eslint": "^5.15.1",
"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": "^24.1.0",
"nodemon": "^1.18.7",
"nodemon-webpack-plugin": "^4.0.6",
"prettier": "^1.14.2",
"raw-loader": "^0.5.1",
"to": "^0.2.9",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-node-externals": "^1.7.2"
},
"engines": {
"node": ">=10"
},
"snyk": true
}