0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-23 22:27:34 -05:00
verdaccio/test/unit/partials/config.js

21 lines
325 B
JavaScript
Raw Normal View History

2017-04-19 14:15:28 -05:00
'use strict';
2017-03-03 18:39:26 -05:00
const config = {
storage: __dirname + '/store/test-storage',
2017-03-03 18:39:26 -05:00
uplinks: {
'npmjs': {
'url': 'https://registry.npmjs.org/'
}
},
2017-04-10 15:00:41 -05:00
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;