-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.45 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vizart-path",
"version": "2.0.9",
"description": "VizArt Path: Chord, BiPartite, Parallel Coordinates, Sankey, Strentched Chord ...",
"main": "dist/vizart-path.js",
"module": "dist/vizart-path.esm.js",
"jsnext:main": "dist/vizart-path.esm.js",
"style": "dist/vizart-path.css",
"scripts": {
"_prebuild": "eslint src test",
"build": "rollup -c",
"dev": "rollup -c rollup.config.dev.js -w",
"watch": "rollup -c -w",
"pretest": "npm run build",
"test:watch": "mocha --reporter min --watch",
"test": "mocha",
"test:cover": "babel-node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha",
"prepublish": "npm test",
"pretty": "prettier --single-quote --trailing-comma es5 --write \"{src,__{tests,demo,dist}__}/**/*.js\""
},
"files": [
"src",
"dist"
],
"dependencies": {
"crossfilter": "^1.3.12",
"d3-array": "^1.2.1",
"d3-axis": "^1.0.12",
"d3-brush": "^1.0.6",
"d3-chord": "^1.0.6",
"d3-collection": "^1.0.7",
"d3-dispatch": "^1.0.5",
"d3-drag": "^1.2.3",
"d3-format": "^1.3.2",
"d3-interpolate": "^1.3.2",
"d3-sankey": "^0.7.1",
"d3-scale": "^2.1.2",
"d3-selection": "^1.3.2",
"d3-shape": "^1.2.2",
"d3-timer": "^1.0.9",
"d3-transition": "^1.1.3",
"lodash-es": "^4.17.11",
"parcoord-es": "^2.2.2",
"requestanimationframe": "0.0.23",
"sylvester": "0.0.21",
"vizart-core": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^5.10.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^5.2.0",
"rollup-plugin-babel": "^3.0.7",
"prettier": "1.15.3",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-postcss": "^1.6.3",
"rollup-plugin-serve": "^0.6.0",
"rollup-watch": "^4.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/VizArtJS/vizart-path.git"
},
"keywords": [
"VizArt",
"ES6",
"Data Visualization"
],
"author": "Xing Yun",
"license": "MIT",
"homepage": "https://vizartjs.github.io/"
}