forked from vega/vega-scenegraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "vega-scenegraph",
"version": "2.0.3",
"description": "Vega scenegraph and renderers.",
"license": "BSD-3-Clause",
"author": {
"name": "Jeffrey Heer",
"url": "http://idl.cs.washington.edu"
},
"contributors": [
{
"name": "Arvind Satyanarayan",
"url": "http://arvindsatya.com"
},
{
"name": "Emily Gu",
"url": "https://github.com/emilygu"
}
],
"main": "build/vega-scenegraph.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "http://github.com/vega/vega-scenegraph.git"
},
"scripts": {
"build": "npm run test && uglifyjs build/vega-scenegraph.js -c -m -o build/vega-scenegraph.min.js",
"pretest": "rm -rf build && mkdir build && rollup -f umd -g d3-path:d3,d3-shape:d3,vega-loader:vega,vega-util:vega -n vega -o build/vega-scenegraph.js -- index.js && bin/schema > build/vega-scenegraph-schema.json",
"test": "tape 'test/**/*-test.js' && eslint index.js src test",
"prepublish": "npm run build",
"postpublish": "git push && git push --tags && zip -j build/vega-scenegraph.zip -- LICENSE README.md build/vega-scenegraph-schema.json build/vega-scenegraph.js build/vega-scenegraph.min.js"
},
"dependencies": {
"d3-path": "1",
"d3-shape": "1",
"vega-loader": "2",
"vega-util": "^1.1"
},
"optionalDependencies": {
"canvas": "^1.6",
"canvas-prebuilt": "^1.6"
},
"devDependencies": {
"eslint": "4",
"jsdom": "11",
"rollup": "0.43",
"tape": "4",
"tv4": "1",
"uglify-js": "3"
},
"browser": {
"canvas": false,
"canvas-prebuilt": false
}
}