-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.13 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
{
"version": "0.2.5",
"name": "git-contributors",
"description": "A nodejs module providing contribution stats for your git repository",
"preferGlobal": true,
"main": "index.js",
"bin": {
"git-contributors": "bin/git-contributors"
},
"scripts": {
"test": "mocha -t 250 test/test.*.js"
},
"homepage": "https://github.com/davidlinse/git-contributors.js",
"repository": {
"type": "git",
"url": "https://github.com/davidlinse/git-contributors.js.git"
},
"bugs": {
"url": "https://github.com/davidlinse/git-contributors.js/issues"
},
"engine": {
"node": ">= 0.10.28"
},
"keywords": [
"git",
"contributors",
"stats",
"nodejs",
"stat",
"repository"
],
"author": {
"name": "David Linse",
"email": "[email protected]",
"url": "http://davidlinse.github.io"
},
"license": "MIT",
"readmeFilename": "README.md",
"dependencies": {
"commander": "~2.8.1",
"lodash": "^4.17.21",
"q": "~2.0.3"
},
"devDependencies": {
"chai": "~1.9.1",
"conventional-changelog": "^3.1.25",
"mocha": "^9.2.0",
"sinon": "~1.10.0"
},
"contributors": []
}