-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
105 lines (105 loc) · 3.46 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
105
{
"name": "vega-tooltip",
"version": "0.35.2",
"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/src/index.d.ts",
"files": [
"src",
"build",
"types"
],
"scripts": {
"prebuild": "npm run clean && npm run build:style",
"build": "rollup -c",
"build:style": "./build-style.sh",
"clean": "rimraf build && rimraf src/style.ts",
"copy:data": "cp -R node_modules/vega-datasets/data examples",
"copy:build": "cp -R build examples",
"deploy:gh": "npm run build && npm run copy:build && gh-pages -d examples && npm run clean",
"prepublishOnly": "npm run clean && npm run build",
"preversion": "npm run lint && npm run test",
"serve": "browser-sync start -s -f build examples --serveStatic examples",
"start": "npm run build && concurrently --kill-others -n Server,Rollup 'npm run serve' 'rollup -c -w'",
"pretest": "npm run build:style",
"test": "jest",
"test:inspect": "node --inspect-brk ./node_modules/.bin/jest --runInBand",
"prepare": "npm run copy:data",
"prettierbase": "prettier '*.{css,scss,html}'",
"format": "eslint . --fix && npm run prettierbase -- --write",
"lint": "eslint . && npm run prettierbase -- --check",
"release": "release-it"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@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-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@release-it/conventional-changelog": "^9.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"browser-sync": "^3.0.3",
"concurrently": "^9.1.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"gh-pages": "^6.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"path": "^0.12.7",
"prettier": "^3.3.3",
"release-it": "^17.10.0",
"rollup": "^4.24.4",
"rollup-plugin-bundle-size": "^1.0.3",
"sass": "^1.80.6",
"typescript": "~5.6.3",
"vega-datasets": "^2.9.0",
"vega-typings": "^1.3.1"
},
"dependencies": {
"vega-util": "^1.17.2"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.24.4"
}
}