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
2017-04-23 21:28:40 +02:00

16 lines
235 B
JavaScript

'use strict';
let config = {
storage: __dirname + '/test-storage',
packages: {
'*': {
allow_access: '$all',
},
},
logs: [
{type: 'stdout', format: 'pretty', level: 'fatal'},
],
};
module.exports = config;