-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 KB
/
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
42
43
44
45
46
47
48
49
50
51
{
"name": "gitme",
"description": "A command line tool to see your git commits across multiple projects",
"version": "1.0.0",
"author": "Dom Harrington <[email protected]>",
"contributors": [
"Dom Harrington <[email protected]>",
"Nick Price <[email protected]>"
],
"dependencies": {
"async": "~0.1.22",
"colors": "~0.6.2",
"commander": "0.6.1",
"findit": "1.1.1",
"gitlog": "0.0.1",
"underscore": "~1.6.0"
},
"devDependencies": {
"mocha": "~1.18.2",
"should": "~1.0.0",
"rimraf": "~2.2.6",
"istanbul": "~0.2.7",
"jshint": "~2.5.0",
"jscs": "~1.3.0"
},
"keywords": [
"git",
"log",
"commit"
],
"repository": {
"type": "git",
"url": "git://github.com/domharrington/gitme.git"
},
"main": "index",
"scripts": {
"prepublish": "npm prune",
"lint": "./node_modules/.bin/jshint .",
"jscs": "./node_modules/.bin/jscs .",
"pretest": "npm run lint && npm run jscs",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -R spec -r should",
"posttest": "rm -rf coverage/"
},
"bin": {
"gitme": "./bin/gitme"
},
"engines": {
"node": ">= 0.4.6 < 0.9.0"
},
"preferGlobal": true
}