-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.33 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
{
"name": "spcd3",
"version": "1.0.0",
"description": "Steerable Parallel Coordinates in D3",
"main": "./dist/library/cjs/spcd3.js",
"module": "./dist/library/esm/spcd3.js",
"types": "./dist/library/index.d.ts",
"files": [
"/dist/library"
],
"scripts": {
"clean": "npx gulp clean",
"build": "npx gulp build",
"serve": "npx gulp serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tugraz-isds/spcd3"
},
"keywords": [
"d3",
"svg",
"visualisation",
"parallel coordinates"
],
"author": "Romana Gruber",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^23.0.2",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "8.3.3",
"browser-sync": "^2.26.2",
"del": "^6.0.0",
"gulp": "^5.0.0",
"gulp-base64-inline": "^1.0.6",
"gulp-rollup": "^2.17.0",
"mini-svg-data-uri": "^1.4.4",
"rollup": "^2.60.0",
"rollup-plugin-gzip": "^2.5.0",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.2.0",
"typescript": "^5.5.3",
"xml-formatter": "^3.6.2"
},
"dependencies": {
"d3-axis": "^3.0.0",
"d3-drag": "^3.0.0",
"d3-dsv": "^3.0.1",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"d3-transition": "^3.0.1",
"d3-brush": "^3.0.0"
}
}