forked from vega/vega-embed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.08 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
{
"name": "vega-embed",
"version": "6.18.2",
"description": "Publish Vega visualizations as embedded web components.",
"keywords": [
"vega",
"data",
"visualization",
"component",
"embed"
],
"repository": {
"type": "git",
"url": "http://github.com/vega/vega-embed.git"
},
"author": {
"name": "UW Interactive Data Lab",
"url": "http://idl.cs.washington.edu"
},
"contributors": [
{
"name": "Dominik Moritz",
"url": "https://www.domoritz.de"
}
],
"bugs": {
"url": "https://github.com/vega/vega-embed/issues"
},
"homepage": "https://github.com/vega/vega-embed#readme",
"license": "BSD-3-Clause",
"main": "build/vega-embed.js",
"module": "build/vega-embed.module.js",
"unpkg": "build/vega-embed.min.js",
"jsdelivr": "build/vega-embed.min.js",
"types": "build/vega-embed.module.d.ts",
"files": [
"src",
"build",
"build-es5",
"patches"
],
"devDependencies": {
"@auto-it/conventional-commits": "^10.37.6",
"@auto-it/first-time-contributor": "^10.37.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@rollup/plugin-commonjs": "24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@types/semver": "^7.3.13",
"auto": "^10.37.6",
"browser-sync": "^2.27.10",
"concurrently": "^7.5.0",
"del-cli": "^5.0.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^29.3.1",
"patch-package": "^6.5.0",
"postinstall-postinstall": "^2.1.0",
"rollup": "3.12.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts": "^3.0.2",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vega": "^5.22.1",
"vega-lite": "^5.2.0",
"vega-lite-dev-config": "^0.21.0"
},
"peerDependencies": {
"vega": "^5.21.0",
"vega-lite": "*"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"json-stringify-pretty-compact": "^3.0.0",
"semver": "^7.3.8",
"tslib": "^2.4.1",
"vega-interpreter": "^1.0.4",
"vega-schema-url-parser": "^2.2.0",
"vega-themes": "^2.12.0",
"vega-tooltip": "^0.30.0"
},
"bundledDependencies": [
"yallist"
],
"scripts": {
"prebuild": "yarn clean && yarn build:style",
"build": "rollup -c",
"build:style": "./build-style.sh",
"clean": "del-cli build build-es5 src/style.ts",
"prepublishOnly": "yarn clean && yarn build",
"preversion": "yarn lint && yarn test",
"serve": "browser-sync start --directory -s -f build *.html",
"start": "yarn build && concurrently --kill-others -n Server,Rollup 'yarn serve' 'rollup -c -w'",
"pretest": "yarn build:style",
"test": "beemo jest --stdio stream",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"prepare": "beemo create-config && npx patch-package",
"prettierbase": "beemo prettier '*.{css,scss,html}'",
"eslintbase": "beemo eslint .",
"format": "yarn eslintbase --fix && yarn prettierbase --write",
"lint": "yarn eslintbase && yarn prettierbase --check",
"release": "yarn build && auto shipit"
}
}