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

21 lines
325 B
JavaScript
Raw Normal View History

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