-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 958 Bytes
/
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
{
"name": "kibana-chord",
"version": "0.3.0",
"description": "A Chord Diagram Kibana plugin.",
"main": "index.js",
"scripts": {
"build": "cd d3; rollup -c && uglifyjs d3.js -c -m -o d3.min.js && rm d3.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/datavis-tech/kibana-chord.git"
},
"keywords": [
"kibana",
"d3",
"datavis",
"chord",
"data",
"visualization"
],
"author": "Datavis Tech",
"license": "MIT",
"bugs": {
"url": "https://github.com/datavis-tech/kibana-chord/issues"
},
"homepage": "https://github.com/datavis-tech/kibana-chord#readme",
"devDependencies": {
"d3-chord": "^1.0.0",
"d3-format": "^1.0.2",
"d3-scale": "^1.0.1",
"d3-selection": "^1.0.0",
"d3-shape": "^1.0.0",
"d3-time-format": "^2.0.2",
"d3-transition": "^1.0.0",
"rollup": "^0.34.1",
"rollup-plugin-node-resolve": "^1.7.1",
"uglify-js": "^2.7.0"
}
}