0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-06 22:40:26 -05:00
verdaccio/test/unit/partials/config.js

16 lines
235 B
JavaScript
Raw Normal View History

2017-04-19 14:15:28 -05:00
'use strict';
let config = {
2017-04-10 15:00:41 -05:00
storage: __dirname + '/test-storage',
packages: {
'*': {
allow_access: '$all',
},
},
logs: [
2017-04-19 14:15:28 -05:00
{type: 'stdout', format: 'pretty', level: 'fatal'},
2017-04-10 15:00:41 -05:00
],
2017-04-19 14:15:28 -05:00
};
2017-04-10 15:00:41 -05:00
module.exports = config;