-
Notifications
You must be signed in to change notification settings - Fork 209
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "vega-datasets",
"version": "2.9.0",
"description": "Common repository for example datasets used by Vega related projects.",
"license": "BSD-3-Clause",
"main": "build/vega-datasets.js",
"module": "build/vega-datasets.module.js",
"unpkg": "build/vega-datasets.min.js",
"jsdelivr": "build/vega-datasets.min.js",
"types": "build/vega-datasets.module.d.ts",
"repository": {
"type": "git",
"url": "http://github.com/vega/vega-datasets.git"
},
"author": {
"name": "UW Interactive Data Lab",
"url": "http://idl.cs.washington.edu"
},
"files": [
"src",
"build",
"data"
],
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.25.4",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.6",
"@release-it/conventional-changelog": "^9.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/d3-dsv": "^3.0.7",
"d3-dsv": "^3.0.1",
"datalib": "^1.9.3",
"release-it": "^17.6.0",
"rollup": "^4.21.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-ts": "^3.4.5",
"terser": "^5.31.6",
"typescript": "^5.5.4"
},
"scripts": {
"prebuild": "./scripts/make-url-index.sh > src/urls.ts",
"build": "rollup -c",
"flights": "node scripts/flights.js",
"github": "python scripts/github.py",
"release": "release-it"
}
}