mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01: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
@ -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
|
- Starring (npm star, npm unstar) - not supported, doesn't make sense in private registry
|
||||||
- Ping (npm ping) - **supported**
|
- Ping (npm ping) - **supported**
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
- npm audit - **supported**
|
||||||
|
|
||||||
## FAQ / Contact / Troubleshoot
|
## 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.
|
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
|
# if package is not available locally, proxy requests to 'npmjs' registry
|
||||||
proxy: npmjs
|
proxy: npmjs
|
||||||
|
|
||||||
|
# To use `npm audit` comment out the following section
|
||||||
|
#middlewares:
|
||||||
|
# audit:
|
||||||
|
# enabled: true
|
||||||
|
|
||||||
# log settings
|
# log settings
|
||||||
logs:
|
logs:
|
||||||
- {type: stdout, format: pretty, level: http}
|
- {type: stdout, format: pretty, level: http}
|
||||||
|
@ -16,6 +16,11 @@ auth:
|
|||||||
# You can set this to -1 to disable registration.
|
# You can set this to -1 to disable registration.
|
||||||
#max_users: 1000
|
#max_users: 1000
|
||||||
|
|
||||||
|
# Experimental built-in middlewares
|
||||||
|
#middlewares:
|
||||||
|
# audit:
|
||||||
|
# enabled: true
|
||||||
|
|
||||||
# a list of other known repositories we can talk to
|
# a list of other known repositories we can talk to
|
||||||
uplinks:
|
uplinks:
|
||||||
npmjs:
|
npmjs:
|
||||||
|
@ -45,6 +45,7 @@
|
|||||||
"pkginfo": "0.4.1",
|
"pkginfo": "0.4.1",
|
||||||
"request": "2.85.0",
|
"request": "2.85.0",
|
||||||
"semver": "5.5.0",
|
"semver": "5.5.0",
|
||||||
|
"verdaccio-audit": "0.0.3",
|
||||||
"verdaccio-htpasswd": "0.2.2"
|
"verdaccio-htpasswd": "0.2.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
BIN
yarn.lock
BIN
yarn.lock
Binary file not shown.
Loading…
Reference in New Issue
Block a user