-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
39 lines (39 loc) · 852 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "npm-git-install",
"version": "0.2.0",
"description": "Clones and (re)installs packages from remote git repos",
"main": "build/index.js",
"bin": {
"npm-git": "build/cli.js"
},
"scripts": {
"prepublish": "coffee --no-header -cbmo build src",
"develop": "coffee --watch --no-header -cbmo build src",
"test": "echo test"
},
"keywords": [
"npm",
"install",
"packages",
"git",
"prepublish",
"clone",
"local",
"directory",
"temporary"
],
"repository": {
"type": "git",
"url": "https://github.com/lzrski/npm-git-install.git"
},
"author": "Tadeusz Łazurski (http://lazurski.pl/)",
"license": "ISC",
"dependencies": {
"commander": "^2.9.0",
"cross-spawn": "^5.0.1",
"temp": "^0.8.3"
},
"devDependencies": {
"coffee-script": "^1.10.0"
}
}