mirror of
https://github.com/verdaccio/verdaccio.git
synced 2025-02-17 23:45:29 -05:00
Merge pull request #1373 from lirantal/feat/detect-secrets
feat: prevent secrets from leaking to source control
This commit is contained in:
commit
81d02f6f4f
3 changed files with 3002 additions and 1 deletions
2989
.secrets-baseline
Normal file
2989
.secrets-baseline
Normal file
File diff suppressed because it is too large
Load diff
|
@ -70,6 +70,7 @@
|
||||||
"@verdaccio/types": "5.2.2",
|
"@verdaccio/types": "5.2.2",
|
||||||
"codecov": "3.5.0",
|
"codecov": "3.5.0",
|
||||||
"cross-env": "5.2.0",
|
"cross-env": "5.2.0",
|
||||||
|
"detect-secrets": "1.0.3",
|
||||||
"eslint": "5.16.0",
|
"eslint": "5.16.0",
|
||||||
"get-stdin": "7.0.0",
|
"get-stdin": "7.0.0",
|
||||||
"husky": "2.7.0",
|
"husky": "2.7.0",
|
||||||
|
@ -131,14 +132,17 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
|
"relative": true,
|
||||||
"linters": {
|
"linters": {
|
||||||
"*.yaml": [
|
"*.yaml": [
|
||||||
"prettier --parser yaml --no-config --single-quote --write",
|
"prettier --parser yaml --no-config --single-quote --write",
|
||||||
|
"detect-secrets-launcher --baseline .secrets-baseline",
|
||||||
"git add"
|
"git add"
|
||||||
],
|
],
|
||||||
"*": [
|
"*": [
|
||||||
"eslint .",
|
"eslint .",
|
||||||
"prettier --write",
|
"prettier --write",
|
||||||
|
"detect-secrets-launcher --baseline .secrets-baseline",
|
||||||
"git add"
|
"git add"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
|
10
yarn.lock
10
yarn.lock
|
@ -3089,6 +3089,14 @@ detect-newline@^2.1.0:
|
||||||
resolved "https://registry.verdaccio.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
|
resolved "https://registry.verdaccio.org/detect-newline/-/detect-newline-2.1.0.tgz#f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"
|
||||||
integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
|
integrity sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=
|
||||||
|
|
||||||
|
detect-secrets@1.0.3:
|
||||||
|
version "1.0.3"
|
||||||
|
resolved "https://registry.npmjs.org/detect-secrets/-/detect-secrets-1.0.3.tgz#ad46e11bdffc96a9338118cf5952d1a0609d91a1"
|
||||||
|
integrity sha512-+qZ1S0Zssnz74uluISDHUkH7OpMI2tKbyn8PhQuNY/ffvZ4JvSCC9ouWAtE2Ac6726NtTip6GkNacSuxYpnAZw==
|
||||||
|
dependencies:
|
||||||
|
debug "^4.1.0"
|
||||||
|
which "^1.3.1"
|
||||||
|
|
||||||
diff-sequences@^24.3.0:
|
diff-sequences@^24.3.0:
|
||||||
version "24.3.0"
|
version "24.3.0"
|
||||||
resolved "https://registry.verdaccio.org/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975"
|
resolved "https://registry.verdaccio.org/diff-sequences/-/diff-sequences-24.3.0.tgz#0f20e8a1df1abddaf4d9c226680952e64118b975"
|
||||||
|
@ -8285,7 +8293,7 @@ which-module@^2.0.0:
|
||||||
resolved "https://registry.verdaccio.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
resolved "https://registry.verdaccio.org/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
|
||||||
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=
|
||||||
|
|
||||||
which@^1.2.10, which@^1.2.9, which@^1.3.0:
|
which@^1.2.10, which@^1.2.9, which@^1.3.0, which@^1.3.1:
|
||||||
version "1.3.1"
|
version "1.3.1"
|
||||||
resolved "https://registry.verdaccio.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
resolved "https://registry.verdaccio.org/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
|
||||||
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
|
integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==
|
||||||
|
|
Loading…
Add table
Reference in a new issue