This repository has been archived by the owner on Dec 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
101 lines (101 loc) · 2.6 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "vega-lib",
"version": "4.4.0",
"description": "Include Vega in projects using minimal dependencies.",
"keywords": [
"vega",
"visualization",
"interaction",
"dataflow",
"library",
"data",
"d3"
],
"license": "BSD-3-Clause",
"author": {
"name": "UW Interactive Data Lab",
"url": "http://idl.cs.washington.edu"
},
"contributors": [
{
"name": "Jeffrey Heer",
"url": "http://idl.cs.washington.edu"
},
{
"name": "Arvind Satyanarayan",
"url": "http://arvindsatya.com"
},
{
"name": "Ryan Russell",
"url": "https://github.com/RussellSprouts"
},
{
"name": "Emily Gu",
"url": "https://github.com/emilygu"
},
{
"name": "Dominik Moritz",
"url": "https://www.domoritz.de"
},
{
"name": "Yuri Astrakhan",
"url": "https://github.com/nyurik"
}
],
"main": "build/vega.js",
"module": "index",
"jsnext:main": "index",
"unpkg": "build/vega.min.js",
"jsdelivr": "build/vega.min.js",
"repository": {
"type": "git",
"url": "https://github.com/vega/vega-lib.git"
},
"scripts": {
"rollup": "bin/rollup && bin/schema > build/vega-schema.json",
"prebuild": "rm -rf build && mkdir build",
"build": "npm run rollup && bin/rollup -e",
"postbuild": "terser build/vega.js -c -m -o build/vega.min.js && terser build/vega-core.js -c -m -o build/vega-core.min.js",
"pretest": "npm run prebuild && npm run rollup",
"test": "TZ=America/Los_Angeles tape 'test/**/*-test.js' && eslint index.js test",
"prepublishOnly": "npm run test && npm run build",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"vega-crossfilter": "^3.0.1",
"vega-dataflow": "^4.1.0",
"vega-encode": "^3.2.2",
"vega-event-selector": "^2.0.0",
"vega-expression": "^2.4.0",
"vega-force": "^3.0.0",
"vega-geo": "^3.1.1",
"vega-hierarchy": "^3.1.0",
"vega-loader": "^3.1.0",
"vega-parser": "^3.9.0",
"vega-projection": "^1.2.0",
"vega-runtime": "^3.2.0",
"vega-scale": "^2.5.1",
"vega-scenegraph": "^3.2.3",
"vega-statistics": "^1.2.3",
"vega-transforms": "^2.3.1",
"vega-typings": "*",
"vega-util": "^1.7.0",
"vega-view": "^3.4.1",
"vega-view-transforms": "^2.0.3",
"vega-voronoi": "^3.0.0",
"vega-wordcloud": "^3.0.0"
},
"devDependencies": {
"eslint": "5",
"rollup": "0.67.4",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^3.4.0",
"tape": "4",
"tv4": "1",
"terser": "3"
},
"browser": {
"buffer": false,
"fs": false
}
}