-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 960 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
{
"name": "vega-scenegraph",
"version": "4.10.2",
"description": "Vega scenegraph and renderers.",
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "build/vega-scenegraph.js",
"module": "build/vega-scenegraph.module.js",
"unpkg": "build/vega-scenegraph.min.js",
"repository": "vega/vega",
"scripts": {
"schema": "node schema > build/vega-scenegraph-schema.json",
"prebuild": "rimraf build",
"build": "rollup -c rollup.config.mjs",
"postbuild": "yarn schema",
"pretest": "yarn build --config-test",
"test": "tape -r ./test/__init__ 'test/**/*-test.js' && yarn xmllint",
"xmllint": "xmllint --noout ./test/resources/svg/*.svg",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {
"d3-path": "^3.1.0",
"d3-shape": "^3.2.0",
"vega-canvas": "^1.2.7",
"vega-loader": "^4.5.1",
"vega-scale": "^7.3.0",
"vega-util": "^1.17.1"
}
}