1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/fixtures/package.js
2018-02-10 16:45:29 +01:00

12 lines
271 B
JavaScript

module.exports = function(name, version = '0.0.0', port = '55551', domain= `http://localhost:${port}`) {
return {
name: name,
version: version,
dist: {
shasum: 'fake',
tarball: `${domain}/${encodeURIComponent(name)}/-/blahblah`,
},
};
};