-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
92 lines (92 loc) · 2.46 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
84
85
86
87
88
89
90
91
92
{
"name": "dc.graph",
"version": "0.9.9.2",
"license": "Apache-2.0",
"copyright": "2015-2023",
"description": "Graph visualizations integrated with crossfilter and dc.js",
"keywords": [
"visualization",
"svg",
"animation",
"graph",
"network",
"crossfilter",
"d3"
],
"homepage": "http://dc-js.github.io/dc.graph.js/",
"bugs": "https://github.com/dc-js/dc.graph.js/issues",
"author": {
"name": "Gordon Woodhull",
"url": "http://gordon.woodhull.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/dc-js/dc.graph.js.git"
},
"dependencies": {
"crossfilter2": "^1.4.8",
"css-layout": "1.x",
"d3": "3.x",
"dagre": "^0.8.5",
"dc": "~2.1.0",
"ink-docstrap": "^1.3.2",
"metagraph": "^0.0.7",
"queue-async": "~1.x",
"viz.js": "^1.8.2",
"webcola": "^3.4.0",
"yoga-layout": "^1.9"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.14.0",
"bootstrap": "^3.4.1",
"classlist-polyfill": "1.2.x",
"d3-force": "^1.2.1",
"d3-force-straighten-paths": "^1.0.2",
"d3-tip": "^0.7.1",
"graphlib-dot": "github:dagrejs/graphlib-dot",
"grunt": "^1.3.0",
"grunt-cli": "~1.2",
"grunt-contrib-concat": "~1.0",
"grunt-contrib-connect": "~1.0",
"grunt-contrib-copy": "~1.0",
"grunt-contrib-uglify": "^3.4.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-gh-pages": "^4.0.0",
"grunt-jsdoc": "^2.4.1",
"grunt-jsdoc-to-markdown": "^6.0.0",
"grunt-shell": "~2.1",
"interval-tree-1d": "^1.0.4",
"ionicons": "^4.6.3",
"jquery": "^3.5.1",
"jquery-ui-dist": "~1.12",
"jsdifflib": "~1.1",
"load-grunt-tasks": "~3.5",
"lodash": "^4.17.21",
"promise-polyfill": "^8.1.3",
"rollup": "^2.79.1",
"rollup-plugin-commonjs": "~10",
"rollup-plugin-node-resolve": "~2",
"time-grunt": "~1.4",
"uglify-js": "^3.10.3",
"x-editable": "1.5.x"
},
"scripts": {
"test": "grunt test",
"d3v4-force": "rollup -c d3v4-force.rollup.config.js",
"interval-tree": "rollup -c lysenko-interval-tree.rollup.config.js",
"yoga": "rollup -c yoga.rollup.config.js; sed -i .bak 's/_a = _typeModule(_typeModule),/var _a = _typeModule(_typeModule);/' yoga-layout.js"
},
"npmName": "dc.graph",
"npmFileMap": [
{
"basePath": "/",
"files": [
"dc.graph.css",
"dc.graph.min.js",
"dc.graph.min.js.map",
"dc.graph.js",
"dc.graph.js.map"
]
}
]
}