2016-07-06 20 views

答えて

3

心に浮かぶカップル。 GitHubリポジトリがある場合は、依存関係を指すことができます。

{ 
    "name": "my-project-name", 
    "version": "0.0.1", 
    "description": "My Description Here", 
    "main": "main.js", 
    "scripts": { 
    "test": "echo \"Error: no test specified\" && exit 1" 
    }, 
    "author": "The Best Developer Ever", 
    "license": "MIT", 
    "dependencies": { 
    "express" : "github:expressjs/express", 
    "anyRepo" : "github:userName/projectName" 
    } 
} 

package.jsonファイルでカスタムコマンドを作成することもできます。 (これは実際のコマンドラインツール異なるを)それは多分淹電話して、あなたが実行します後、そこ

{ 
    "name": "my-project-name", 
    "version": "0.0.1", 
    "description": "My Description Here", 
    "main": "main.js", 
    "scripts": { 
    "brew" : "sudo brew install package-name(s)-here", 
    "any-name-here" : "echo Any command can go here" 
    }, 
    "author": "The Best Developer Ever", 
    "license": "MIT", 
    "dependencies": { 
    "express" : "github:expressjs/express", 
    } 
} 

をスクリプトを実行します

npm run brew

そして、そのコマンドの中のスクリプトが実行されます(別名依存関係をインストールします)。これはあなたが探しているものでなければなりません。

- フアン

EDIT ------------------------------------ -------------------------------------------------- -------------------------------

申し訳ありませんが、私は誤って間違ったコマンドを出しました。実行する必要がありますnpm run brewNOTnpm brew

+0

ありがとう、ありがとうございます。 –

関連する問題