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
2017-08-06 21:54:15 +02:00

12 lines
233 B
JavaScript

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