-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "vega-transform-omnisci-core",
"version": "0.0.12",
"description": "Vega transform for OmniSci Core.",
"keywords": [
"vega",
"transform",
"omnisci",
"core"
],
"license": "BSD-3-Clause",
"author": "Dominik Moritz (https://www.domoritz.de/)",
"main": "build/vega-transform-omnisci-core.js",
"umd:main": "build/vega-transform-omnisci-core.umd.js",
"module": "build/vega-transform-omnisci-core.mjs",
"browser": "build/vega-transform-omnisci-core.umd.js",
"unpkg": "build/vega-transform-omnisci-core.umd.js",
"jsdelivr": "build/vega-transform-omnisci-core.umd.js",
"source": "index.js",
"repository": "vega/vega-transform-omnisci-core",
"scripts": {
"build": "microbundle --external vega --name QueryCore",
"watch": "microbundle watch --external vega --name QueryCore",
"lint": "eslint index.js",
"prepublishOnly": "yarn lint && yarn build",
"postpublish": "git push && git push --tags"
},
"devDependencies": {
"eslint": "^8.1.0",
"microbundle": "^0.15.0"
},
"peerDependencies": {
"vega": "^5.3.0"
}
}