-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1016 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
42
43
44
45
{
"name": "daily-git",
"version": "1.0.5",
"description": "Get all of your commits on github (default: since last work day (0 am).",
"keywords": [
"git",
"github",
"daily",
"commits",
"standup",
"scrum"
],
"main": "src/index.js",
"scripts": {
"start": "node ./bin/daily-git.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"daily-git": "./bin/daily-git.js"
},
"repository": {
"type": "git",
"url": "git://github.com/schinkentanz/daily-git.git"
},
"preferGlobal": true,
"author": "Schinkentanz",
"license": "MIT",
"dependencies": {
"bluebird": "~2.3.4",
"chalk": "~0.5.1",
"github": "~0.2.2",
"log-symbols": "~1.0.1",
"minimist": "~1.1.0",
"moment": "~2.8.3",
"npm": "~2.1.2",
"octonode": "~0.6.7"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-jshint": "~0.10.0",
"jshint-stylish": "~1.0.0",
"load-grunt-tasks": "~0.6.0",
"time-grunt": "~1.0.0"
}
}