mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-08 23:25:51 +01:00
6a778e8c17
close #155, see reasons there This is a huge commit, so let me know if it will cause any trouble, I might consider reverting it if it's the case.
13 lines
229 B
JavaScript
13 lines
229 B
JavaScript
|
|
module.exports = function(name, version) {
|
|
return {
|
|
"name": name,
|
|
"version": version || "0.0.0",
|
|
"dist": {
|
|
"shasum": "fake",
|
|
"tarball": "http://localhost:55551/"+escape(name)+"/-/blahblah"
|
|
}
|
|
}
|
|
}
|
|
|