forked from vega/falcon
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1.2 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
{
"name": "falcon-vis-repository",
"version": "0.0.0",
"private": true,
"description": "falcon-vis package and examples of its use",
"repository": "git+https://github.com/cmudig/falcon.git",
"author": "xnought <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/cmudig/falcon/issues"
},
"homepage": "https://github.com/cmudig/falcon#readme",
"scripts": {
"start:diffusion": "yarn workspace diffusion-duckdb dev --open",
"start:movies-arrow": "yarn workspace movies-arrow dev --open",
"start:movies-duckdb": "yarn workspace movies-duckdb dev --open",
"start:movies-json": "yarn workspace movies-json dev --open",
"dev": "yarn start:movies-arrow",
"build": "yarn workspace falcon-vis build",
"format": "yarn workspace falcon-vis format",
"test": "yarn workspace falcon-vis test",
"gh-pages": "gh-pages -d examples/live",
"deploy-examples": "sh scripts/deploy.sh",
"publish-falcon-vis": "sh scripts/publish.sh"
},
"devDependencies": {
"gh-pages": "^6.0.0"
},
"directories": {
"examples": "./examples/*",
"falcon-vis": "./falcon-vis"
},
"workspaces": [
"falcon-vis",
"examples/*"
]
}