-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 930 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
34
35
36
37
38
{
"name": "vega-schema",
"version": "5.22.0",
"description": "Generate the Vega JSON schema.",
"keywords": [
"vega",
"json",
"schema"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "build/vega-schema.js",
"module": "build/vega-schema.module.js",
"repository": "vega/vega",
"scripts": {
"prebuild": "rimraf build",
"build": "rollup -c --config-node",
"postbuild": "node schema > build/vega-schema.json",
"test": "yarn build",
"prepublishOnly": "yarn test"
},
"dependencies": {
"vega-scale": "^7.2.0"
},
"devDependencies": {
"vega-crossfilter": "*",
"vega-encode": "*",
"vega-force": "*",
"vega-geo": "*",
"vega-hierarchy": "*",
"vega-label": "*",
"vega-regression": "*",
"vega-transforms": "*",
"vega-view-transforms": "*",
"vega-voronoi": "*",
"vega-wordcloud": "*"
}
}