2016-12-02 12:06:17 +01:00
{
"name" : "gitinspector" ,
2017-01-15 15:21:56 +01:00
"version" : "0.5.0-dev-1" ,
2017-01-15 14:56:49 +01:00
"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." ,
2017-01-15 14:53:23 +01:00
"preferGlobal" : true ,
2016-12-02 12:06:17 +01:00
"main" : "gitinspector.py" ,
"directories" : {
"doc" : "docs" ,
"test" : "tests"
} ,
"scripts" : {
"clean" : "rimraf **/*.pyc" ,
2017-01-15 15:21:21 +01:00
"crlf" : "crlf --set=LF **/*.py" ,
"prepublish" : "npm run clean && npm run crlf" ,
2016-12-02 12:06:17 +01:00
"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 pkg.name@pkg.version 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" ,
2017-01-15 14:53:34 +01:00
"stats" ,
"analytics" ,
"grading"
2016-12-02 12:06:17 +01:00
] ,
"author" : {
"name" : "Adam Waldenberg" ,
"email" : "adam.waldenberg@ejwa.se" ,
"url" : "https://github.com/adam-waldenberg"
} ,
"contributors" : [
"Agustín Cañas" ,
"Bart van Andel <bavanandel@gmail.com>" ,
"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" : {
2017-01-15 15:21:21 +01:00
"crlf" : "^1.1.0" ,
2016-12-02 12:06:17 +01:00
"rimraf" : "^2.5.4" ,
"with-package" : "^0.2.0"
} ,
"dependencies" : {
"python-shell" : "^0.4.0"
}
}