-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.9 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
{
"private": true,
"license": "BSD-3-Clause",
"author": "UW Interactive Data Lab (http://idl.cs.washington.edu)",
"repository": "vega/vega",
"scripts": {
"build": "lerna run build && yarn docsbuild",
"clean": "lerna clean --yes && lerna exec -- rimraf build && lerna exec -- rimraf LICENSE && rimraf node_modules yarn.lock",
"data": "rsync -r node_modules/vega-datasets/data/* docs/data",
"docs": "cd docs && bundle exec jekyll serve -I -l",
"docsbuild": "cd packages/vega/build && cp vega.js vega.min.js* vega-core.js vega-core.min.js* vega-schema.json ../../../docs/",
"license": "lerna exec -- cp ../../LICENSE .",
"release": "yarn license && lerna publish from-package",
"serve": "serve packages/vega/ -l 8080",
"test": "yarn test:no-lint && yarn lint",
"test:no-lint": "lerna run test --ignore vega-typings && lerna run test --scope vega-typings",
"lint": "yarn eslint . --ext .js",
"format": "yarn lint --fix",
"postinstall": "yarn data"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/eslint-parser": "^7.17.0",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.1.3",
"@types/node": "^17.0.23",
"ajv": "^8.11.0",
"ajv-formats": "^2.1.1",
"canvas": "^2.9.1",
"@definitelytyped/dtslint": "^0.0.111",
"eslint": "^8.11.0",
"jsdom": "^19.0.0",
"lerna": "^4.0.0",
"pixelmatch": "^5.2.1",
"prettier": "^2.6.1",
"rimraf": "^3.0.2",
"rollup": "^2.70.1",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"serve": "^13.0.2",
"tape": "^5.5.2",
"terser": "^5.12.1",
"typescript": "~4.6.3",
"vega-datasets": "^2.3.0"
},
"workspaces": [
"packages/*"
]
}