-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
40 lines (40 loc) · 1011 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
{
"name": "gitlogg",
"version": "0.2.1",
"description": "Parse the 'git log' of one or several 'git' repositories into a sanitised and distributable 'JSON' file",
"keywords": [
"gitlog",
"gitlogg",
"git log",
"git stats",
"json",
"git log json"
],
"homepage": "https://github.com/dreamyguy/gitlogg",
"repository": {
"type": "git",
"url": "https://github.com/dreamyguy/gitlogg"
},
"author": {
"name": "Wallace Sidhrée",
"email": "[email protected]",
"url": "http://sidhree.com/"
},
"copyright": "Copyright (c) Wallace Sidhrée - All rights reserved.",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"chalk": "^1.1.3"
},
"scripts": {
"setup": "npm install babel-cli -g && npm install && mkdir -p _output && mkdir -p _repos && mkdir -p _tmp",
"gitlogg": "./scripts/gitlogg.sh"
},
"engines": {
"node": ">=4.3.0"
},
"dependencies": {
"JSONStream": "^1.2.1",
"byline": "4.2.2"
}
}