-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 953 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
{
"name": "vega-geo",
"version": "4.4.0",
"description": "Geographic data transforms for Vega dataflows.",
"keywords": [
"vega",
"geo",
"projection",
"graticule"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "build/vega-geo.js",
"module": "build/vega-geo.module.js",
"unpkg": "build/vega-geo.min.js",
"repository": "vega/vega",
"scripts": {
"prebuild": "rimraf build",
"build": "rollup -c --config-transform",
"pretest": "yarn build --config-test",
"test": "tape 'test/**/*-test.js'",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {
"d3-array": "^3.1.1",
"d3-color": "^3.0.1",
"d3-geo": "^3.0.1",
"vega-canvas": "^1.2.5",
"vega-dataflow": "^5.7.3",
"vega-projection": "^1.4.5",
"vega-statistics": "^1.7.9",
"vega-util": "^1.15.2"
},
"devDependencies": {
"vega-transforms": "*"
}
}