-
Notifications
You must be signed in to change notification settings - Fork 140
/
package.json
83 lines (83 loc) · 2.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "d3-dtree",
"version": "2.4.1",
"description": "A library for visualizing data trees built on top of D3.",
"main": "dist/dTree.js",
"demo": "test/demo/",
"scripts": {
"build": "gulp build",
"coverage": "gulp coverage",
"demo": "gulp demo",
"release": "gulp release"
},
"repository": {
"type": "git",
"url": "https://github.com/ErikGartner/dtree.git"
},
"keywords": [
"d3",
"graphing",
"tree graph",
"genealogy",
"family tree"
],
"author": "Erik Gärtner",
"license": "MIT",
"bugs": {
"url": "https://github.com/ErikGartner/dtree/issues"
},
"homepage": "https://github.com/ErikGartner/dtree",
"dependencies": {
"d3": "^4.5.0",
"lodash": "^4.0.0"
},
"devDependencies": {
"babel-core": "^5.2.17",
"babel-eslint": "^4.0.5",
"babelify": "^6.0.0",
"browserify": "^11.0.1",
"connect": "^3.4.0",
"conventional-changelog": "^0.5.3",
"conventional-github-releaser": "^0.5.1",
"del": "^1.1.1",
"glob": "^5.0.14",
"gulp": "^3.8.10",
"gulp-babel": "^5.0.0",
"gulp-bump": "^1.0.0",
"gulp-conventional-changelog": "^0.7.0",
"gulp-eslint": "^1.0.0",
"gulp-file": "^0.2.0",
"gulp-filter": "^3.0.0",
"gulp-git": "^2.9.0",
"gulp-github-release": "^1.1.0",
"gulp-istanbul": "^0.10.0",
"gulp-livereload": "^3.4.0",
"gulp-load-plugins": "^0.10.0",
"gulp-notify": "^2.1.0",
"gulp-plumber": "^1.0.1",
"gulp-preprocess": "^2.0.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.5.0",
"gulp-sourcemaps": "^1.3.0",
"gulp-uglify": "^1.2.0",
"isparta": "~3.0.3",
"jquery": "^2.1.4",
"minimist": "^1.2.0",
"rollup": "^0.41.4",
"run-sequence": "^1.0.2",
"serve-static": "^1.10.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.0.0",
"watchify": "^3.3.1"
},
"babelBoilerplateOptions": {
"entryFileName": "dtree",
"mainVarName": "dTree",
"mochaGlobals": [
"stub",
"spy",
"expect"
]
}
}