If I have an npm dependency that is nested in a git repo, how would I define that dependency in the package.json file?

Say the git repo is at git://github.com/user/myrepo.git on the dev branch, at the relative path ./mylib from the git repo's root.

Is this possible?

Update: found this which is very close to what I want. Now, I just need to know how to specify the path within the repo+branch.

link|improve this question

feedback

1 Answer

I don't think it's possible. However, you could specify the repo as a dependency. Then add mylib to bundledDependencies in package.json and put a shim into node_modules/mylib/index.js:

module.exports = require('myrepo')

And yes, you don't need .. or so, nodes magic does that for you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.