1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-17 07:45:52 +01:00
verdaccio/test/functional/fixtures/package.js

12 lines
271 B
JavaScript
Raw Normal View History

module.exports = function(name, version = '0.0.0', port = '55551', domain= `http://localhost:${port}`) {
return {
name: name,
version: version,
2017-04-19 21:15:28 +02:00
dist: {
shasum: 'fake',
tarball: `${domain}/${encodeURIComponent(name)}/-/blahblah`,
2017-04-19 21:15:28 +02:00
},
};
};
2013-09-28 18:46:55 +02:00