-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.07 KB
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
{
"name": "git-commits",
"version": "1.3.0",
"description": "Get the commit history of a repo in a Node streamy way (shelling out to git-rev-list(1)).",
"main": "index.js",
"dependencies": {
"git-parse-commit": "^1.0.0",
"git-spawned-stream": "^0.1.1",
"split-transform-stream": "^1.0.0"
},
"devDependencies": {
"alessioalex-standard": "^1.1.0",
"husky": "^0.11.4",
"mocha": "^2.4.5",
"proxyquire": "^1.7.4",
"should": "^8.3.1"
},
"scripts": {
"test": "mocha",
"lint": "alessioalex-standard",
"precommit": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/alessioalex/git-commits"
},
"keywords": [
"git",
"history",
"commit",
"commits",
"stream",
"git-commits",
"git-history"
],
"author": "Alexandru Vladutu <alexandru.vladutu@gmail.com> (http://careers.stackoverflow.com/alessioalex)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alessioalex/git-commits/issues"
},
"homepage": "https://github.com/alessioalex/git-commits"
}