-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 924 Bytes
/
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
{
"name": "vega-typings",
"version": "0.24.1",
"description": "Typings for Vega.",
"types": "types",
"repository": "vega/vega",
"author": "Dominik Moritz <[email protected]>",
"keywords": [
"vega",
"typescript",
"typings"
],
"license": "BSD-3-Clause",
"scripts": {
"format": "prettier $([ \"$CI\" = true ] && echo --check || echo --write) './**/*.{ts,tsx,js,json,css}'",
"format-tests": "prettier --write 'tests/**/*.ts'",
"build-tests": "./build-tests.sh",
"pretest": "yarn build-tests",
"test": "yarn format && dtslint . --localTs ../../node_modules/typescript/lib && ts-json-schema-generator -p types/index.d.ts --type Spec > /dev/null"
},
"dependencies": {
"@types/geojson": "7946.0.4",
"vega-event-selector": "^3.0.1",
"vega-expression": "^5.0.1",
"vega-util": "^1.17.1"
},
"devDependencies": {
"ts-json-schema-generator": "^1.2.0"
}
}