-
Notifications
You must be signed in to change notification settings - Fork 328
/
package.json
64 lines (64 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "gitinspector",
"version": "0.5.0-dev-1",
"description": "Gitinspector is a statistical analysis tool for git repositories. The default analysis shows general statistics per author, which can be complemented with a timeline analysis that shows the workload and activity of each author.",
"preferGlobal": true,
"main": "gitinspector.py",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"clean": "rimraf **/*.pyc",
"crlf": "crlf --set=LF **/*.py",
"prepublish": "npm run clean && npm run crlf",
"release": "with-package git commit -am pkg.version && with-package git tag pkg.version && git push && npm publish && git push --tags",
"release:beta": "npm run release && npm run tag:beta",
"tag:beta": "with-package npm dist-tag add [email protected] beta",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"gitinspector": "gitinspector.py"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejwa/gitinspector.git"
},
"keywords": [
"git",
"statistics",
"stats",
"analytics",
"grading"
],
"author": {
"name": "Adam Waldenberg",
"email": "[email protected]",
"url": "https://github.com/adam-waldenberg"
},
"contributors": [
"Agustín Cañas",
"Bart van Andel <[email protected]>",
"Bill Wang",
"Christian Kastner",
"Jiwon Kim",
"Kamila Chyla",
"Luca Motta",
"Philipp Nowak",
"Sergei Lomakov",
"Yannick Moy"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ejwa/gitinspector/issues"
},
"homepage": "https://github.com/ejwa/gitinspector#readme",
"devDependencies": {
"crlf": "^1.1.0",
"rimraf": "^2.5.4",
"with-package": "^0.2.0"
},
"dependencies": {
"python-shell": "^0.4.0"
}
}