mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-12-16 21:56:25 -05:00
feat: support for npm audit fix #689
it is dissabled and commented out by default
This commit is contained in:
parent
c565734b90
commit
f9f180de98
5 changed files with 15 additions and 0 deletions
|
@ -163,6 +163,10 @@ Verdaccio aims to support all features of a standard npm client that make sense
|
|||
- Starring (npm star, npm unstar) - not supported, doesn't make sense in private registry
|
||||
- Ping (npm ping) - **supported**
|
||||
|
||||
### Security
|
||||
|
||||
- npm audit - **supported**
|
||||
|
||||
## FAQ / Contact / Troubleshoot
|
||||
|
||||
If you have any issue you can try the following options, do no desist to ask or check our issues database, perhaps someone has asked already what you are looking for.
|
||||
|
|
|
@ -43,6 +43,11 @@ packages:
|
|||
# if package is not available locally, proxy requests to 'npmjs' registry
|
||||
proxy: npmjs
|
||||
|
||||
# To use `npm audit` comment out the following section
|
||||
#middlewares:
|
||||
# audit:
|
||||
# enabled: true
|
||||
|
||||
# log settings
|
||||
logs:
|
||||
- {type: stdout, format: pretty, level: http}
|
||||
|
|
|
@ -16,6 +16,11 @@ auth:
|
|||
# You can set this to -1 to disable registration.
|
||||
#max_users: 1000
|
||||
|
||||
# Experimental built-in middlewares
|
||||
#middlewares:
|
||||
# audit:
|
||||
# enabled: true
|
||||
|
||||
# a list of other known repositories we can talk to
|
||||
uplinks:
|
||||
npmjs:
|
||||
|
|
|
@ -45,6 +45,7 @@
|
|||
"pkginfo": "0.4.1",
|
||||
"request": "2.85.0",
|
||||
"semver": "5.5.0",
|
||||
"verdaccio-audit": "0.0.3",
|
||||
"verdaccio-htpasswd": "0.2.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
|
BIN
yarn.lock
BIN
yarn.lock
Binary file not shown.
Loading…
Reference in a new issue