Skip to content

Commit c26cb55

Browse files
feat: dependency-check-plugin updated package.json and config-schema.json to newer version
1 parent 77ec8ca commit c26cb55

File tree

2 files changed

+15
-9
lines changed

2 files changed

+15
-9
lines changed

config.schema.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@
2121
"description": "Customisable questions to add to attestation form",
2222
"type": "object"
2323
},
24+
"domains": {
25+
"description": "Provide domains to use alternative to the defaults",
26+
"type": "object"
27+
},
2428
"privateOrganizations": {
2529
"description": "Pattern searches for listed private organizations are disabled",
2630
"type": "array"

package.json

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "@finos/git-proxy",
3-
"version": "1.4.0",
3+
"version": "1.6.0",
44
"description": "Deploy custom push protections and policies on top of Git.",
55
"scripts": {
66
"cli": "node ./packages/git-proxy-cli/index.js",
77
"client": "vite --config vite.config.js",
88
"clientinstall": "npm install --prefix client",
99
"server": "node index.js",
10-
"start": "concurrently 'npm run server' 'npm run client'",
10+
"start": "concurrently \"npm run server\" \"npm run client\"",
1111
"build": "vite build",
1212
"test": "NODE_ENV=test mocha --exit",
1313
"test-coverage": "nyc npm run test",
@@ -23,12 +23,6 @@
2323
"git-proxy": "./index.js",
2424
"git-proxy-all": "concurrently 'npm run server' 'npm run client'"
2525
},
26-
"exports": {
27-
"./plugin": "./src/plugin.js",
28-
"./proxy/actions": "./src/proxy/actions/index.js",
29-
"./src/config/env": "./src/config/env.js",
30-
"./config/file": "./src/config/file.js"
31-
},
3226
"workspaces": [
3327
"./packages/git-proxy-cli"
3428
],
@@ -38,6 +32,12 @@
3832
"type": "git",
3933
"url": "https://github.com/finos/git-proxy"
4034
},
35+
"exports": {
36+
"./plugin": "./src/plugin.js",
37+
"./proxy/actions": "./src/proxy/actions/index.js",
38+
"./src/config/env": "./src/config/env.js",
39+
"./config/file": "./src/config/file.js"
40+
},
4141
"dependencies": {
4242
"@material-ui/core": "^4.11.0",
4343
"@material-ui/icons": "4.11.3",
@@ -64,6 +64,7 @@
6464
"moment": "^2.29.4",
6565
"mongodb": "^5.0.0",
6666
"nodemailer": "^6.6.1",
67+
"parse-diff": "^0.11.1",
6768
"passport": "^0.7.0",
6869
"passport-activedirectory": "^1.0.4",
6970
"passport-local": "^1.0.0",
@@ -73,6 +74,7 @@
7374
"react-dom": "^16.13.1",
7475
"react-html-parser": "^2.0.2",
7576
"react-router-dom": "6.26.2",
77+
"simple-git": "^3.25.0",
7678
"uuid": "^10.0.0",
7779
"yargs": "^17.7.2"
7880
},
@@ -118,4 +120,4 @@
118120
"last 1 safari version"
119121
]
120122
}
121-
}
123+
}

0 commit comments

Comments
 (0)