-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 897 Bytes
/
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
{
"name": "vega-view",
"version": "5.11.1",
"description": "View component and transforms for Vega visualizations.",
"keywords": [
"vega",
"view",
"layout"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "build/vega-view.js",
"module": "build/vega-view.module.js",
"unpkg": "build/vega-view.min.js",
"repository": "vega/vega",
"scripts": {
"prebuild": "rimraf build",
"build": "rollup -c rollup.config.mjs",
"pretest": "yarn build --config-test",
"test": "tape 'test/**/*-test.js'",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {
"d3-array": "^3.2.2",
"d3-timer": "^3.0.1",
"vega-dataflow": "^5.7.5",
"vega-format": "^1.1.1",
"vega-functions": "^5.13.1",
"vega-runtime": "^6.1.4",
"vega-scenegraph": "^4.10.2",
"vega-util": "^1.17.1"
}
}