forked from vega/vega-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.86 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
{
"name": "vega-lite",
"author": "Jeffrey Heer, Dominik Moritz, Kanit \"Ham\" Wongsuphasawat",
"version": "0.9.3",
"collaborators": [
"Kanit Wongsuphasawat <[email protected]> (http://kanitw.yellowpigz.com)",
"Dominik Moritz <[email protected]> (http://domoritz.de)",
"Jeffrey Heer <[email protected]> (http://jheer.org)"
],
"description": "Vega-lite provides a higher-level grammar for visual analysis, comparable to ggplot or Tableau, that generates complete Vega specifications.",
"main": "src/vl.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "browserify src/vl.ts -p tsify -d -s vl > vega-lite.js",
"postbuild": "uglifyjs vega-lite.js -cm --source-map vega-lite.min.js.map > vega-lite.min.js && npm run schema",
"build:all": "npm run clean && npm run build && npm test && npm run lint",
"cover": "tsc && istanbul cover node_modules/.bin/_mocha -- --recursive",
"clean": "rm -f vega-lite.* vega-lite-schema.json & find src -name '*.js*' -type f -delete & find test -name '*.js*' -type f -delete & rm -rf examples/_diff examples/_original examples/_output",
"deploy": "scripts/deploy.sh",
"deploy:gh": "scripts/deploy-gh.sh",
"lint": "tslint -c tslint.json src/*.ts test/*.ts src/**/*.ts test/**/*.ts",
"start": "npm run watch & browser-sync start --server --files 'vega-lite.js' --index 'gallery.html'",
"schema": "tsc && npm run schema:only",
"schema:only": "node src/schema/schemagen.js > vega-lite-schema.json",
"site": "bundle exec jekyll serve",
"test": "tsc && mocha --recursive --require source-map-support/register test examples",
"watch:build": "watchify src/vl.ts -p tsify -v -d -s vl -o 'exorcist vega-lite.js.map > vega-lite.js'",
"watch:test": "nodemon -x 'npm test && npm run lint'",
"watch": "nodemon -x 'npm run build && npm test && npm run lint'",
"x-compile": "./scripts/examples-compile.sh",
"x-diff": "./scripts/examples-diff.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/vega/vega-lite.git"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/vega/vega-lite/issues"
},
"homepage": "https://github.com/vega/vega-lite",
"devDependencies": {
"browser-sync": "^2.11.0",
"browserify": "^13.0.0",
"browserify-shim": "^3.8.12",
"browserify-versionify": "^1.0.6",
"chai": "^3.4.1",
"istanbul": "^0.4.2",
"json-diff": "^0.3.1",
"mocha": "^2.3.4",
"nodemon": "^1.8.1",
"source-map-support": "^0.4.0",
"tsify": "^0.13.2",
"tslint": "^3.2.1",
"typescript": "^1.7.5",
"uglify-js": "^2.6.1",
"vega": "^2.4.2",
"watchify": "^3.7.0",
"z-schema": "^3.16.1"
},
"dependencies": {
"datalib": "^1.5.9",
"yargs": "^3.31.0"
},
"browserify": {
"transform": [
"browserify-shim",
"browserify-versionify"
]
},
"browserify-shim": {}
}