-
Notifications
You must be signed in to change notification settings - Fork 211
/
Copy pathpackage.json
46 lines (46 loc) · 1.18 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
{
"name": "vega-datasets",
"version": "2.11.0",
"description": "Common repository for example datasets used by Vega related projects.",
"license": "BSD-3-Clause",
"type": "module",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/vega-datasets.js"
},
"repository": {
"type": "git",
"url": "git+http://github.com/vega/vega-datasets.git"
},
"author": {
"name": "UW Interactive Data Lab",
"url": "http://idl.cs.washington.edu"
},
"files": [
"src",
"build",
"data",
"datapackage.json"
],
"dependencies": {
"d3-dsv": "^3.0.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/d3-dsv": "^3.0.7",
"datalib": "^1.9.3",
"release-it": "^18.1.2",
"rollup": "^4.32.1",
"rollup-plugin-bundle-size": "^1.0.3",
"typescript": "^5.7.3"
},
"scripts": {
"prebuild": "./scripts/make-url-index.sh > src/urls.ts && ./scripts/build_datapackage.py",
"build": "rollup -c",
"github": "python scripts/github.py",
"release": "release-it"
}
}