-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 898 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
40
41
{
"name": "git-snoop",
"version": "1.0.0",
"description": "Command line tool for statistical analysis of a git repository",
"main": "./src/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "4.6.0",
"npm": "2.15.9"
},
"bin": {
"git-snoop": "./src/main.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deep4788/git-snoop.git"
},
"keywords": [
"git",
"command-line-tool",
"snoop",
"statistics",
"repo",
"node.js",
"javascript",
"utility"
],
"author": "Deep Aggarwal <deep.uiuc@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/deep4788/git-snoop/issues"
},
"homepage": "https://github.com/deep4788/git-snoop#readme",
"dependencies": {
"chalk": "1.1.3",
"cli-table": "0.3.1",
"shelljs": "0.7.7"
}
}