forked from domharrington/node-gitlog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 921 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": "gitlog",
"version": "3.1.1",
"description": "Git log parser for Node.JS",
"main": "index.js",
"scripts": {
"lint": "jshint .",
"checkStyle": "jscs .",
"test": "istanbul cover ./node_modules/.bin/_mocha -- -r should",
"posttest": "istanbul check-coverage --statements 95 --branches 85 --functions 100 --lines 95 && rm -rf coverage"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/domharrington/node-gitlog.git"
},
"keywords": [
"git",
"log",
"parser"
],
"author": "Dom Harrington",
"license": "BSD",
"engines": {
"node": ">=0.11.12"
},
"devDependencies": {
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jshint": "^2.5.6",
"mocha": "^3.0.2",
"should": "~11.1.0"
},
"dependencies": {
"debug": "^3.1.0",
"lodash.assign": "^4.2.0"
}
}