mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
712db31a43
* test: split up web and endpoints api * chore: add reset password endpoint not fully implemented yet * feat: add password change api ednpoint for web
53 lines
808 B
YAML
53 lines
808 B
YAML
web:
|
|
enable: true
|
|
title: verdaccio-api-spec -1
|
|
|
|
auth:
|
|
auth-memory:
|
|
users:
|
|
test:
|
|
name: test
|
|
password: test
|
|
|
|
store:
|
|
memory:
|
|
limit: 10
|
|
|
|
uplinks:
|
|
npmjs:
|
|
url: http://localhost:4873/
|
|
|
|
packages:
|
|
'@*/*':
|
|
access: $all
|
|
publish: $all
|
|
proxy: npmjs
|
|
'forbidden-place':
|
|
access: nobody
|
|
publish: $all
|
|
'react':
|
|
access: $all
|
|
publish: $all
|
|
proxy: npmjs
|
|
'corrupted-package':
|
|
access: $all
|
|
publish: $all
|
|
proxy: npmjs
|
|
'jquery':
|
|
access: $all
|
|
publish: $all
|
|
proxy: npmjs
|
|
'auth-package':
|
|
access: $authenticated
|
|
publish: $authenticated
|
|
'vue':
|
|
access: $authenticated
|
|
publish: $authenticated
|
|
proxy: npmjs
|
|
'*':
|
|
access: $all
|
|
publish: $all
|
|
|
|
logs:
|
|
- { type: stdout, format: pretty, level: warns }
|