0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-12-16 21:56:25 -05:00
verdaccio/test/functional/lib/package.js

13 lines
213 B
JavaScript
Raw Normal View History

2013-09-28 11:46:55 -05:00
module.exports = function(name, version) {
2013-09-28 11:46:55 -05:00
return {
"name": name,
"version": version || "0.0.0",
2013-09-28 11:46:55 -05:00
"dist": {
"shasum": "fake",
"tarball": "http://localhost:55551/"+escape(name)+"/-/blahblah"
}
2013-12-29 01:40:47 -05:00
}
2013-09-28 11:46:55 -05:00
}