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
|
{
"name": "git-deps",
"version": "0.1.0",
"authors": [
"Adam Spiers"
],
"description": "tool for performing automatic analysis of dependencies between git commits",
"main": "git-deps",
"keywords": [
"git",
"dependency",
"analysis",
"scm",
"graphing",
"visualization"
],
"license": "GPL-2.0",
"homepage": "https://github.com/aspiers/git-deps",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"d3-tip": "~0.6.6",
"d3": "~3.5.3",
"webcola": "aspiers/WebCola#git-deps-master",
"jquery": "~3.0.0",
"noty": "~v2.4.1",
"browserify": "*",
"coffeeify" : "~1.0.0",
"dagre": "~0.7.1"
},
"devDependencies": {
"watchify": "*"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/aspiers/git-deps"
},
"author": "Adam Spiers",
"bugs": {
"url": "https://github.com/aspiers/git-deps/issues"
}
}
|