0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05:00
verdaccio/test/unit/partials/config.js
2017-04-23 21:28:40 +02:00

15 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;