-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.51 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
{
"name": "skd3",
"version": "0.2.0",
"url": "https://github.com/fabriciorhs/skd3",
"description": "Sankey Diagram made easy. A javascript library that extends the popular D3.js/d3-sankey to enable fast and beautiful.",
"keywords": [
"sankey",
"d3",
"d3-sankey",
"diagram"
],
"repository": {
"type": "git",
"url": "https://github.com/fabriciorhs/skd3"
},
"author": {
"name": "Fabricio Rodrigues",
"email": "fabriciorhs@gmail.com",
"url": "https://bl.ocks.org/fabriciorhs"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/fabriciorhs/skd3/issues",
"email": "fabriciorhs@gmail.com"
},
"homepage": "https://bl.ocks.org/fabriciorhs",
"scripts": {
"test": "grunt",
"build": "grunt"
},
"dependencies": {
"d3-sankey": "^0.7.1",
"d3-tip": "^0.7.1"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"es6-promise": "4.1.1",
"grunt": "^1.0.1",
"grunt-cli": "1.2.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "2.2.1",
"grunt-contrib-jshint": "^1.1.0",
"grunt-contrib-uglify": "3.1.0",
"grunt-contrib-watch": "1.0.0",
"grunt-postcss": "0.9.0",
"grunt-text-replace": "0.4.0"
},
"filename": "skd3.min.js",
"npmName": "skd3",
"npmFileMap": [
{
"basePath": "/",
"files": [
"skd3.js",
"skd3.min.js"
]
}
],
"readmeFilename": "README.md",
"peerDependencies": {
"d3": "4.10.2"
}
}