-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 792 Bytes
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
{
"name": "gitcheck",
"version": "1.0.0",
"description": "A tool for checking the status of multiple git repositories",
"author": "Tom Clarkson <tom@orangeguava.com> (http://tqclarkson.com)",
"repository": {
"type": "git",
"url": "https://github.com/tqc/gitcheck"
},
"bugs": {
"url": "https://github.com/tqc/gitcheck/issues"
},
"bin": {
"gitcheck": "./gitcheck.js"
},
"scripts": {
"test": "eslint . && mocha"
},
"dependencies": {
"gitrunner": "^2.0.14"
},
"devDependencies": {
"eslint": "^3.12.2",
"babel-eslint": "^7.1.1",
"chai": "^3.5.0",
"mocha": "3.2.0"
},
"engines": {
"node": "^6"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/tqc/gitcheck/raw/master/LICENSE"
}
]
}