Git存储库到package.json中的依赖项

时间:2016-03-18 07:21:54

标签: angularjs git reactjs repository package.json

我有一个git存储库,并希望将此存储库用作某个其他项目的package.json文件中的依赖项,以便在运行npm命令时可以下载它。 谁能帮助我?

3 个答案:

答案 0 :(得分:0)

来自NPM docs

Git URL as Dependencies

git://github.com/user/project.git#commit-ish
git+ssh://user@hostname:project.git#commit-ish
git+ssh://user@hostname/project.git#commit-ish
git+http://user@hostname/project/blah.git#commit-ish
git+https://user@hostname/project/blah.git#commit-ish

答案 1 :(得分:0)

package.json中尝试以下格式:

"dependencies" : {
  "projectName" : "git://github.com/user/project.git"
}

答案 2 :(得分:0)

尝试一下。

"dependencies": {
    "<repo>": "<user>/<repo>#<branch>",
}

示例:

"dependencies": {
   "botkit": "jonchurch/botkit#master",
}

Reference is here!