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

16 lines
235 B
JavaScript
Raw Normal View History

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