UNPKG

git-commit-count

Version:

A tool to count the numbers of commits of a git repository

56 lines (55 loc) 1.45 kB
{ "name": "git-commit-count", "version": "1.1.3", "description": "A tool to count the numbers of commits of a git repository", "main": "build.js", "scripts": { "pretest": "npm run lint", "test": "nyc ava", "lint": "eslint index.js", "coveralls": "nyc report --reporter=text-lcov | coveralls", "prepublish": "npm run babel", "babel": "babel index.js -o build.js", "prepush": "npm test" }, "repository": { "type": "git", "url": "git+https://github.com/aichbauer/node-git-commit-count.git" }, "keywords": [ "git", "commit", "commits", "count", "git-commit-count", "number" ], "author": "Lukas Aichbauer <l.aichbauer@gmail.com>", "license": "MIT", "bugs": { "url": "https://github.com/aichbauer/node-git-commit-count/issues" }, "ava": { "require": "babel-register", "babel": "inherit" }, "homepage": "https://github.com/aichbauer/node-git-commit-count#readme", "dependencies": { "execa": "^0.6.1", "is-git-repository": "^1.0.1", "path-is-absolute": "^1.0.1" }, "devDependencies": { "ava": "^0.18.2", "babel-cli": "^6.24.0", "babel-plugin-add-module-exports": "^0.2.1", "babel-preset-env": "^1.2.2", "coveralls": "^2.12.0", "eslint": "^3.18.0", "eslint-config-airbnb-base": "^11.1.1", "eslint-plugin-import": "^2.2.0", "fs-extra": "^2.1.2", "husky": "^0.13.2", "nyc": "^10.1.2" } }