-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 KB
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": "@presenta/block-vegalite",
"version": "1.0.4",
"description": "A Presenta Block to render a Vega-Lite chart",
"main": "src/index.js",
"unpkg": "dist/presenta-block-vegalite.min.js",
"module": "dist/presenta-block-vegalite.min.js",
"scripts": {
"start": "rollup -c --watch",
"bump": "npm run build && git add -u && git commit -m \"bump release\" && npm version patch && git push && npm publish",
"test": "browser-sync start -s -f \"dist/*, test/*\" --startPath test",
"build": "rollup -c"
},
"author": "Franchino Fabio",
"license": "BSD-3-Clause",
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^8.1.0",
"autoprefixer": "^9.8.0",
"cssnano": "^4.1.10",
"node-sass": "^4.14.1",
"rollup-plugin-postcss": "^3.1.2",
"rollup-plugin-terser": "^7.0.2",
"standard": "^14.3.4"
},
"dependencies": {
"vega": "^5.17.0",
"vega-embed": "^6.12.2",
"vega-lite": "^4.16.8"
}
}