forked from dagrejs/dagre-d3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.12 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
{
"name": "dagre-d3",
"version": "0.2.10-pre",
"description": "A D3-based renderer for Dagre",
"keywords": [
"graph",
"dagre",
"graphlib",
"renderer"
],
"devDependencies": {
"browserify": "2.28.x",
"chai": "1.7.x",
"graphlib-dot": "0.4.8",
"jscs": "1.5.x",
"jshint": "2.3.x",
"mocha": "1.12.x",
"mocha-phantomjs": "3.5.0",
"phantomjs": "1.9.x",
"semver": "2.1.x",
"uglify-js": "1.2.3"
},
"dependencies": {
"cp-data": "1.1.3",
"dagre": "0.4.6",
"d3": "~3.3.8",
"graphlib": "0.7.4"
},
"author": "Chris Pettitt <chris@samsarin.com>",
"repository": {
"type": "git",
"url": "https://github.com/cpettitt/dagre-d3.git"
},
"license": "MIT",
"testling": {
"files": [
"test/demo-test.js"
],
"browsers": [
"ie/9..latest",
"firefox/17..latest",
"firefox/nightly",
"chrome/22..latest",
"chrome/canary",
"opera/12..latest",
"opera/next",
"safari/5.1..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
"android-browser/4.2..latest"
],
"harness": "mocha"
}
}