mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
fe60eab99c
* test: enable e2e * test: improve setup * chore: update setup * test: publish on temp folder * chore: initial setup example * chore: add global install to pnpm * chore: update test script * test: add info command * chore: add install tests * chore: add debug enabled code * chore: update pnpm lock file
54 lines
975 B
YAML
54 lines
975 B
YAML
storage: ./storage
|
|
|
|
auth:
|
|
htpasswd:
|
|
file: ./htpasswd
|
|
max_users: -1
|
|
|
|
web:
|
|
enable: false
|
|
title: verdaccio-e2e-pkg
|
|
|
|
uplinks:
|
|
npmjs:
|
|
url: https://registry.verdaccio.org/
|
|
max_fails: 30
|
|
fail_timeout: 10m
|
|
timeout: 60s
|
|
cache: true
|
|
maxage: 30m
|
|
agent_options:
|
|
keepAlive: true
|
|
maxSockets: 40
|
|
maxFreeSockets: 10
|
|
logs:
|
|
- { type: stdout, format: pretty, level: warn }
|
|
|
|
packages:
|
|
## ui-theme still lives outside of the core project
|
|
'@verdaccio/ui-theme':
|
|
access: $anonymous
|
|
publish: $anonymous
|
|
proxy: npmjs
|
|
'@verdaccio/*':
|
|
access: $anonymous
|
|
publish: $anonymous
|
|
'@*/*':
|
|
access: $anonymous
|
|
publish: $anonymous
|
|
unpublish: $anonymous
|
|
proxy: npmjs
|
|
'verdaccio-*':
|
|
access: $anonymous
|
|
publish: $anonymous
|
|
'verdaccio':
|
|
access: $anonymous
|
|
publish: $anonymous
|
|
'**':
|
|
access: $anonymous
|
|
publish: $anonymous
|
|
unpublish: $anonymous
|
|
proxy: npmjs
|
|
|
|
_debug: true
|