-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.86 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
{
"name": "timelines-chart",
"version": "2.11.8",
"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",
"types": "dist/timelines-chart.d.ts",
"homepage": "https://github.com/vasturiano/timelines-chart",
"repository": {
"type": "git",
"url": "https://github.com/vasturiano/timelines-chart.git"
},
"scripts": {
"build": "rimraf dist && rollup -c",
"dev": "rollup -w -c rollup.config.dev.mjs",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"example/**/*"
],
"dependencies": {
"d3-array": "1 - 3",
"d3-axis": "1 - 3",
"d3-brush": "2 - 3",
"d3-color-legend": "1",
"d3-scale": "1 - 4",
"d3-scale-chromatic": "1 - 3",
"d3-selection": "2 - 3",
"d3-time-format": "1 - 4",
"d3-tip": "^0.9",
"kapsule": "^1.13",
"svg-text-fit": "^1.1",
"svg-utils": "^1.2"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^23.0.4",
"@rollup/plugin-node-resolve": "^15.0.1",
"postcss": "^8.4.20",
"postcss-nested": "^6.0.0",
"postcss-simple-vars": "^7.0.1",
"rimraf": "^3.0.2",
"rollup": "^3.7.3",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.9.4"
}
}