This repository was archived by the owner on Dec 21, 2018. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.35 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.35 KB
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
{
"name": "vega-view",
"version": "3.4.1",
"description": "View component and transforms for Vega visualizations.",
"keywords": [
"vega",
"view",
"layout"
],
"license": "BSD-3-Clause",
"author": {
"name": "Jeffrey Heer",
"url": "http://idl.cs.washington.edu"
},
"main": "build/vega-view.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/vega/vega-view.git"
},
"scripts": {
"build": "npm run test && uglifyjs build/vega-view.js -c -m -o build/vega-view.min.js",
"pretest": "rm -rf build && mkdir build && rollup -g d3-array:d3,d3-timer:d3,vega-dataflow:vega,vega-parser:vega,vega-runtime:vega,vega-scenegraph:vega,vega-util:vega -f umd -n vega -o build/vega-view.js -- index.js",
"test": "tape 'test/**/*-test.js' && eslint index.js src",
"prepublishOnly": "npm run build",
"postpublish": "git push && git push --tags && zip -j build/vega-view.zip -- LICENSE README.md build/vega-view.js build/vega-view.min.js"
},
"dependencies": {
"d3-array": "^2.0.2",
"d3-timer": "^1.0.9",
"vega-dataflow": "^4.1.0",
"vega-parser": "^3.9.0",
"vega-runtime": "^3.2.0",
"vega-scenegraph": "^3.2.3",
"vega-util": "^1.7.0"
},
"devDependencies": {
"eslint": "5",
"rollup": "0.67.4",
"tape": "4",
"uglify-js": "3"
}
}