svn-npm-install
v0.0.125
Published
Allow modules to be installed from svn repos
Downloads
15
Readme
svn-npm-install
Allow node modules to be installed from svn repos.
This project is essentially just provide a mechanism to get them into your project with an npm install
.
WARNING
Installing this module will make changes to your project's package.json file.
Installing this module via npm install
will add an install hook to your
project's package.json. Once this hook is added any time your run npm install
for your project svn-npm-install looks through your package.json file for an
svnDependencies
block where you can list your subversion stored node modules.
Getting Started
Install with npm install --save svn-npm-install
"dependencies": {
"svn-npm-install": "0.0.1"
}
After installing svn-npm-install you may use list dependencies from subversion
repositories in your package.json
under a "svnDependencies" key. e.g.
"svnDependencies": {
"svn-module": "http://path/to/svn/repo/trunk"
}
It also require svn credentials to authenticate the svn location, list it in your package.json under a "svnCred" key. e.g.
"svnCred": {
"username": "",
"password":""
}
Author
- Surya Sharma
License
This project is licensed under the [MIT]