-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 2.67 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "vega",
"version": "2.6.3",
"description": "The Vega visualization grammar.",
"keywords": [
"vega",
"visualization",
"interaction",
"dataflow",
"grammar",
"data",
"d3"
],
"repository": {
"type": "git",
"url": "http://github.com/vega/vega.git"
},
"author": {
"name": "Arvind Satyanarayan",
"url": "http://arvindsatya.com"
},
"contributors": [
{
"name": "Jeffrey Heer",
"url": "http://idl.cs.washington.edu"
},
{
"name": "Ryan Russell",
"url": "https://github.com/RussellSprouts"
},
{
"name": "Emily Gu",
"url": "https://github.com/emilygu"
}
],
"license": "BSD-3-Clause",
"main": "index.js",
"bin": {
"vg2png": "./bin/vg2png",
"vg2svg": "./bin/vg2svg"
},
"dependencies": {
"d3": "^3.5.9",
"d3-cloud": "^1.2.1",
"d3-geo-projection": "^0.2.15",
"datalib": "^1.7.1",
"topojson": "^1.6.19",
"vega-dataflow": "^1.4.0",
"vega-event-selector": "^1.0.0",
"vega-expression": "^1.2.0",
"vega-logging": "^1.0.1",
"vega-scenegraph": "^1.0.16",
"yargs": "^3.30.0"
},
"optionalDependencies": {
"canvas": "^1.3.4"
},
"devDependencies": {
"browserify": "^10.2.6",
"browserify-shim": "^3.8.9",
"browserify-versionify": "^1.0.4",
"chai": "^3.0.0",
"chai-spies": "^0.6.0",
"exorcist": "^0.4.0",
"istanbul": "latest",
"jsdom": "^7.2.2",
"jshint": "^2.8.0",
"jstransform": "^11.0.2",
"mocha": "^2.2.5",
"through": "^2.3.8",
"tv4": "^1.1.12",
"uglify-js": "^2.4.24",
"vega-datasets": "vega/vega-datasets#gh-pages",
"watchify": "^3.2.3",
"xmldom": "^0.1.19",
"xpath": "^0.0.9"
},
"scripts": {
"deploy": "npm run lint && npm run test && scripts/deploy.sh",
"lint": "jshint src/",
"test": "mocha --timeout 30000 --recursive test/",
"cover": "istanbul cover _mocha -- --timeout 30000 --recursive test/",
"build": "browserify index.js -d -s vg | exorcist vega.js.map > vega.js",
"postbuild": "uglifyjs vega.js -cm > vega.min.js && npm run schema",
"schema": "node scripts/schema.js > vega-schema.json",
"watch": "watchify index.js -v -d -s vg -o 'exorcist vega.js.map > vega.js'"
},
"browser": {
"buffer": false,
"canvas": false,
"fs": false,
"http": false,
"request": false,
"sync-request": false,
"url": false
},
"browserify": {
"transform": [
"./scripts/strip-schema",
"browserify-shim",
"browserify-versionify"
]
},
"browserify-shim": {
"d3": "global:d3",
"d3-cloud": "global:d3.layout.cloud",
"canvas": "global:canvas",
"topojson": "global:topojson"
}
}