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 21
/
Copy pathpackage.json
53 lines (53 loc) · 1.83 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
{
"name": "vega-parser",
"version": "3.9.0",
"description": "Parse Vega specifications to runtime dataflows.",
"keywords": [
"vega",
"parser",
"dataflow",
"reactive"
],
"license": "BSD-3-Clause",
"author": {
"name": "Jeffrey Heer",
"url": "http://idl.cs.washington.edu"
},
"main": "build/vega-parser.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/vega/vega-parser.git"
},
"scripts": {
"build": "npm run test && uglifyjs build/vega-parser.js -c -m -o build/vega-parser.min.js",
"rollup": "rollup -f umd -g d3-array:d3,d3-color:d3,d3-format:d3,d3-geo:d3,d3-time-format:d3,vega-dataflow:vega,vega-event-selector:vega,vega-expression:vega,vega-scale:vega,vega-scenegraph:vega,vega-statistics:vega,vega-util:vega -n vega -o build/vega-parser.js -- index.js",
"schema": "rollup -f umd -g vega-util:vega -n vega.schema -o build/vega-schema.js -- schema/index.js",
"pretest": "rm -rf build && mkdir build && npm run rollup && npm run schema",
"test": "tape 'test/**/*-test.js' && eslint index.js src test",
"prepublishOnly": "npm run build",
"postpublish": "git push && git push --tags && zip -j build/vega-parser.zip -- LICENSE README.md build/vega-schema.js build/vega-parser.js build/vega-parser.min.js"
},
"dependencies": {
"d3-array": "^2.0.2",
"d3-color": "^1.2.3",
"d3-format": "^1.3.2",
"d3-geo": "^1.11.3",
"d3-time-format": "^2.1.3",
"vega-dataflow": "^4.1.0",
"vega-event-selector": "^2.0.0",
"vega-expression": "^2.4.0",
"vega-scale": "^2.5.1",
"vega-scenegraph": "^3.2.3",
"vega-statistics": "^1.2.3",
"vega-util": "^1.7.0"
},
"devDependencies": {
"eslint": "5",
"rollup": "0.67.4",
"tape": "4",
"uglify-js": "3",
"vega-transforms": "^2.3.1"
}
}