forked from datagovsg/vega-element
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.58 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
{
"name": "@polymer-vis/vega-elements",
"version": "3.0.4",
"description": "Custom elements to visualize Vega and Vega-Lite views.",
"module": "index.js",
"main": "index.js",
"types": "index.d.ts",
"files": [
"*.js",
"*.js.map",
"*.d.ts",
"dist/*",
"src/*"
],
"repository": {
"type": "git",
"url": "git://github.com/PolymerVis/vega-element.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:rollup",
"build:tsc": "npx ttsc",
"build:rollup": "npm run build:tsc && npx rollup -c && npx rollup -c rollup.config.bundled.js",
"test": "echo \"Error: no test specified\" && exit 0"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
},
"keywords": [
"polymer",
"web-components",
"vega",
"vega-lite",
"d3",
"visualization",
"chart",
"svg",
"canvas",
"ggplot",
"graphics"
],
"author": "eterna2 <eterna2@hotmail.com>",
"license": "MIT",
"flat": true,
"dependencies": {
"@polymer/lit-element": "^0.6.1",
"@polymer/polymer": "^3.1.0",
"vega-embed": "^3.18.2"
},
"devDependencies": {
"@polymer-vis/decorator-transformer": "^3.0.1",
"rollup": "^0.66.2",
"rollup-plugin-commonjs": "^9.1.8",
"rollup-plugin-filesize": "^4.0.1",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-terser": "^3.0.0",
"rollup-plugin-typescript2": "^0.17.0",
"ttypescript": "^1.5.5",
"typescript": "^3.1.1",
"vega-typings": "^0.3.47"
},
"publishConfig": {
"access": "public"
}
}