1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/lib/package.js

12 lines
227 B
JavaScript
Raw Normal View History

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