forked from vega/vega-tooltip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.3 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
{
"name": "vega-tooltip",
"version": "0.32.0",
"description": "A tooltip plugin for Vega-Lite and Vega visualizations.",
"keywords": [
"vega-lite",
"vega",
"tooltip"
],
"repository": {
"type": "git",
"url": "https://github.com/vega/vega-tooltip.git"
},
"author": {
"name": "UW Interactive Data Lab",
"url": "https://idl.cs.washington.edu"
},
"collaborators": [
"Dominik Moritz",
"Sira Horradarn",
"Zening Qu",
"Kanit Wongsuphasawat",
"Yuri Astrakhan",
"Jeffrey Heer"
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/vega/vega-tooltip/issues"
},
"homepage": "https://github.com/vega/vega-tooltip#readme",
"main": "build/vega-tooltip.js",
"module": "build/vega-tooltip.module.js",
"unpkg": "build/vega-tooltip.min.js",
"jsdelivr": "build/vega-tooltip.min.js",
"types": "build/vega-tooltip.module.d.ts",
"files": [
"src",
"build",
"types"
],
"scripts": {
"prebuild": "yarn clean && yarn build:style",
"build": "rollup -c",
"build:style": "./build-style.sh",
"clean": "rimraf build && rimraf src/style.ts",
"copy:data": "rsync -r node_modules/vega-datasets/data/* examples/data",
"copy:build": "rsync -r build/* examples/build",
"deploy:gh": "yarn build && yarn copy:build && gh-pages -d examples && yarn clean",
"prepublishOnly": "yarn clean && yarn build",
"preversion": "yarn lint && yarn test",
"serve": "browser-sync start -s -f build examples --serveStatic examples",
"start": "yarn build && concurrently --kill-others -n Server,Rollup 'yarn serve' 'rollup -c -w'",
"pretest": "yarn build:style",
"test": "jest",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"prepare": "yarn copy:data",
"prettierbase": "prettier '*.{css,scss,html}'",
"format": "eslint . --fix && yarn prettierbase --write",
"lint": "eslint . && yarn prettierbase --check",
"release": "release-it"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/plugin-proposal-async-generator-functions": "^7.20.7",
"@babel/plugin-proposal-json-strings": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-proposal-optional-catch-binding": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.4",
"@babel/preset-env": "^7.22.4",
"@babel/preset-typescript": "^7.21.5",
"@release-it/conventional-changelog": "^5.1.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"browser-sync": "^2.29.3",
"concurrently": "^8.1.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"gh-pages": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"path": "^0.12.7",
"prettier": "^2.8.8",
"release-it": "^15.10.5",
"rollup": "^3.23.0",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-ts": "^3.2.0",
"sass": "^1.62.1",
"typescript": "~5.1.3",
"vega-datasets": "^2.7.0",
"vega-typings": "^0.24.1"
},
"dependencies": {
"vega-util": "^1.17.2"
}
}