Skip to content

Commit

Permalink
feat: dependency-check-plugin updated package.json and config-schema.…
Browse files Browse the repository at this point in the history
…json to newer version
  • Loading branch information
gonuguntlakavya committed Nov 15, 2024
1 parent 77ec8ca commit c26cb55
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 9 deletions.
4 changes: 4 additions & 0 deletions config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
"description": "Customisable questions to add to attestation form",
"type": "object"
},
"domains": {
"description": "Provide domains to use alternative to the defaults",
"type": "object"
},
"privateOrganizations": {
"description": "Pattern searches for listed private organizations are disabled",
"type": "array"
Expand Down
20 changes: 11 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@finos/git-proxy",
"version": "1.4.0",
"version": "1.6.0",
"description": "Deploy custom push protections and policies on top of Git.",
"scripts": {
"cli": "node ./packages/git-proxy-cli/index.js",
"client": "vite --config vite.config.js",
"clientinstall": "npm install --prefix client",
"server": "node index.js",
"start": "concurrently 'npm run server' 'npm run client'",
"start": "concurrently \"npm run server\" \"npm run client\"",
"build": "vite build",
"test": "NODE_ENV=test mocha --exit",
"test-coverage": "nyc npm run test",
Expand All @@ -23,12 +23,6 @@
"git-proxy": "./index.js",
"git-proxy-all": "concurrently 'npm run server' 'npm run client'"
},
"exports": {
"./plugin": "./src/plugin.js",
"./proxy/actions": "./src/proxy/actions/index.js",
"./src/config/env": "./src/config/env.js",
"./config/file": "./src/config/file.js"
},
"workspaces": [
"./packages/git-proxy-cli"
],
Expand All @@ -38,6 +32,12 @@
"type": "git",
"url": "https://github.com/finos/git-proxy"
},
"exports": {
"./plugin": "./src/plugin.js",
"./proxy/actions": "./src/proxy/actions/index.js",
"./src/config/env": "./src/config/env.js",
"./config/file": "./src/config/file.js"
},
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "4.11.3",
Expand All @@ -64,6 +64,7 @@
"moment": "^2.29.4",
"mongodb": "^5.0.0",
"nodemailer": "^6.6.1",
"parse-diff": "^0.11.1",
"passport": "^0.7.0",
"passport-activedirectory": "^1.0.4",
"passport-local": "^1.0.0",
Expand All @@ -73,6 +74,7 @@
"react-dom": "^16.13.1",
"react-html-parser": "^2.0.2",
"react-router-dom": "6.26.2",
"simple-git": "^3.25.0",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
Expand Down Expand Up @@ -118,4 +120,4 @@
"last 1 safari version"
]
}
}
}

0 comments on commit c26cb55

Please sign in to comment.