1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/unit/partials/config.js

21 lines
325 B
JavaScript

'use strict';
const config = {
storage: __dirname + '/store/test-storage',
uplinks: {
'npmjs': {
'url': 'https://registry.npmjs.org/'
}
},
packages: {
'*': {
allow_access: '$all',
},
},
logs: [
{type: 'stdout', format: 'pretty', level: 'fatal'},
],
};
module.exports = config;