0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-01-20 22:52:46 -05: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 20:46:55 +04:00