forked from vasturiano/timelines-chart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.93 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
{
"name": "timelines-chart",
"version": "2.8.2",
"description": "A parallel (swimlanes) timelines D3 chart for representing state of time-series over time.",
"keywords": [
"timelines",
"time-series",
"d3",
"swimlanes",
"stacked",
"heatmap",
"lines"
],
"author": {
"name": "Vasco Asturiano",
"url": "http://bl.ocks.org/vasturiano"
},
"license": "MIT",
"unpkg": "dist/timelines-chart.min.js",
"main": "dist/timelines-chart.common.js",
"module": "dist/timelines-chart.module.js",
"homepage": "https://github.com/vasturiano/timelines-chart",
"repository": {
"type": "git",
"url": "https://github.com/vasturiano/timelines-chart.git"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rimraf dist && mkdir dist && rollup -c",
"minify": "terser dist/timelines-chart.js -o dist/timelines-chart.min.js -c -m --comments '/Version/'",
"build-module": "rollup -c rollup.config.module.js",
"prepare": "npm run build && npm run minify && npm run build-module"
},
"files": [
"dist/**/*",
"example/**/*"
],
"dependencies": {
"d3-array": "^2.2.0",
"d3-axis": "^1.0.12",
"d3-brush": "^1.0.6",
"d3-color-legend": "^1.2.4",
"d3-scale": "^3.0.0",
"d3-scale-chromatic": "^1.3.3",
"d3-selection": "^1.4.0",
"d3-time-format": "^2.1.3",
"d3-tip": "^0.9.1",
"kapsule": "^1.10.0",
"svg-text-fit": "^1.1.5",
"svg-utils": "^1.2.6"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"postcss-nested": "^4.1.2",
"postcss-simple-vars": "^5.0.2",
"rimraf": "^2.6.3",
"rollup": "^1.14.6",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"rollup-plugin-postcss": "^2.0.3",
"terser": "^4.0.0"
}
}