forked from vega/vega
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.13 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
{
"name": "vega-transforms",
"version": "4.0.3",
"description": "Data processing transforms for Vega dataflows.",
"keywords": [
"vega",
"dataflow",
"transforms",
"filter",
"aggregate",
"project",
"window",
"sort",
"bin",
"data"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "build/vega-transforms.js",
"module": "index",
"repository": "vega/vega",
"scripts": {
"rollup": "rollup -g d3-array:d3,vega-dataflow:vega,vega-statistics:vega,vega-util:vega -f umd -n vega.transforms -o build/vega-transforms.js -- index.js",
"prebuild": "rimraf build && mkdir build",
"build": "yarn rollup",
"postbuild": "terser build/vega-transforms.js -c -m -o build/vega-transforms.min.js",
"pretest": "yarn prebuild && yarn rollup",
"test": "tape 'test/**/*-test.js' && eslint index.js src test",
"prepublishOnly": "yarn test && yarn build",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"d3-array": "^2.0.3",
"vega-dataflow": "^5.2.1",
"vega-statistics": "^1.3.1",
"vega-util": "^1.10.0"
}
}