Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 29 additions & 3 deletions hooks/declarative-subsequent-scans/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
{
"name": "declarative-subsequent-scans",
"version": "1.0.0",
"description": "",
"description": "secureCodeBox v2 Hook to cascade scan in an declarative manner.",
"homepage": "https://www.secureCodeBox.io",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "hook.js",
"scripts": {
"build": "npx typescript hook.ts --sourceMap",
"test": "jest ."
},
"keywords": [],
"author": "",
"keywords": [
"secureCodeBox",
"security",
"hook"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@kubernetes/client-node": "^0.12.0",
Expand Down
34 changes: 30 additions & 4 deletions hooks/generic-webhook/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
{
"name": "scb-generic-webhook",
"version": "1.0.0",
"description": "",
"description": "secureCodeBox v2 Generic WebHook.",
"homepage": "https://www.secureCodeBox.io",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "hook.js",
"scripts": {
"test": "jest ."
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"secureCodeBox",
"security",
"hook"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.20.0"
},
Expand Down
34 changes: 30 additions & 4 deletions hooks/imperative-subsequent-scans/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
{
"name": "imperative-subsequent-scans",
"version": "1.0.0",
"description": "",
"description": "secureCodeBox v2 Hook to cascade scan in an imperative manner.",
"homepage": "https://www.secureCodeBox.io",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "hook.js",
"scripts": {
"test": "jest ."
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"secureCodeBox",
"security",
"hook"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@kubernetes/client-node": "^0.12.0",
"lodash.set": "^4.3.2"
Expand Down
34 changes: 30 additions & 4 deletions hooks/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,43 @@
{
"name": "securecodebox-hooks",
"version": "1.0.0",
"description": "",
"description": "NPM library to easily set up new hooks for the secureCodeBox v2",
"homepage": "https://www.secureCodeBox.io",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"secureCodeBox",
"security",
"hooks"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"jest": "^25.1.0"
}
Expand Down
38 changes: 33 additions & 5 deletions hooks/persistence-elastic/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,42 @@
{
"name": "persistence-elastic",
"version": "1.0.0",
"description": "",
"main": "index.js",
"description": "secureCodeBox v2 Hook to persist results to elasticsearch.",
"homepage": "https://www.secureCodeBox.io",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "hook.js",
"scripts": {
"test": "jest ."
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"secureCodeBox",
"security",
"hook",
"elasticsearch",
"persistence"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@elastic/elasticsearch": "^7.9.0",
"lodash.chunk": "^4.2.0",
Expand Down
34 changes: 30 additions & 4 deletions hooks/update-field/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,40 @@
{
"name": "scb-update-field",
"version": "1.0.0",
"description": "",
"description": "secureCodeBox v2 Update Field Hook",
"homepage": "https://www.secureCodeBox.io",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "hook.js",
"scripts": {
"test": "jest ."
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"secureCodeBox",
"security",
"scanner"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"license": "Apache-2.0",
"dependencies": {
"lodash.set": "^4.3.2"
},
Expand Down
31 changes: 24 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,39 @@
"name": "securecodebox",
"version": "1.0.0",
"description": "",
"homepage": "https://github.com/secureCodeBox/secureCodeBox-v2#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
"keywords": [
"secureCodeBox",
"security"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"keywords": [],
"author": "",
"license": "ISC",
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"homepage": "https://github.com/secureCodeBox/secureCodeBox-v2#readme",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-oclif": "^3.1.0",
Expand Down
37 changes: 30 additions & 7 deletions scanners/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,40 @@
{
"name": "securecodebox-scanner",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"example": "example"
"description": "NPM library to easily set up new scanners for the secureCodeBox v2",
"homepage": "https://www.secureCodeBox.io",
"repository": {
"type": "git",
"url": "git+https://github.com/secureCodeBox/secureCodeBox-v2.git"
},
"main": "index.js",
"scripts": {
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"keywords": [
"secureCodeBox",
"security",
"scanner"
],
"author": {
"name": "iteratec GmbH",
"email": "security@iteratec.com",
"url": "https://www.iteratec.com"
},
"contributors": [
{
"name" : "Jannik Hollenbach",
"url" : "https://github.com/J12934"
},
{
"name" : "Robert Seedorff",
"url" : "https://github.com/rseedorff"
}
],
"bugs": {
"url": "https://github.com/secureCodeBox/secureCodeBox-v2/issues"
},
"license": "Apache-2.0",
"devDependencies": {
"jest": "^25.5.4"
}
Expand Down