-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
package.json
69 lines (69 loc) · 2.24 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
69
{
"name": "github-cognito-openid-wrapper",
"version": "2.0.0",
"description": "A wrapper to enable AWS Cognito User Pools (which requires OpenID Connect) to talk to GitHub (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 --config .eslintrc.json",
"preinstall": "bash ./scripts/create-key.sh",
"prebuild-dist": "npm run lint && npm run test",
"build-dist": "npm run build",
"predeploy": "npm run build-dist",
"prerelease": "npm run lint && npm run test && npm run build",
"format:base": "prettier \"src/**/*.{ts,js}\"",
"format:fix": "npm run format:base -- --write",
"format:check": "npm run format:base -- --check",
"release": "commit-and-tag-version",
"deploy": "bash ./scripts/deploy.sh",
"coverage": "jest --runInBand --coverage",
"snyk-protect": "snyk-protect",
"prepare": "npm run snyk-protect"
},
"author": "",
"license": "ISC",
"dependencies": {
"@snyk/protect": "^1.1292.1",
"axios": "^1.7.7",
"body-parser": "^1.20.2",
"colors": "^1.4.0",
"express": "^4.21.1",
"json-web-key": "^0.4.0",
"jsonwebtoken": "^9.0.2",
"winston": "^3.13.0",
"winston-splunk-httplogger": "^3.1.7"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@pact-foundation/pact": "^13.1.5",
"all-contributors-cli": "^6.17.2",
"babel-jest": "^28.1.0",
"babel-loader": "^8.2.5",
"commit-and-tag-version": "^10.0.0",
"eslint": "^8.1.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.2.0",
"jest": "^28.1.0",
"nodemon": "^2.0.20",
"nodemon-webpack-plugin": "^4.8.1",
"prettier": "^2.6.2",
"raw-loader": "^0.5.1",
"webpack": "^5.96.1",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^2.5.0"
},
"engines": {
"node": ">=12"
},
"snyk": true
}