-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 899 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
31
32
33
{
"name": "vega-wordcloud",
"version": "4.1.4",
"description": "Wordcloud layout transform for Vega dataflows.",
"keywords": [
"vega",
"wordcloud",
"layout"
],
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (http://idl.cs.washington.edu)",
"main": "build/vega-wordcloud.js",
"module": "build/vega-wordcloud.module.js",
"unpkg": "build/vega-wordcloud.min.js",
"repository": "vega/vega",
"scripts": {
"prebuild": "rimraf build",
"build": "rollup -c rollup.config.mjs --config-transform",
"pretest": "yarn build --config-test",
"test": "tape 'test/**/*-test.js'",
"prepublishOnly": "yarn test && yarn build"
},
"dependencies": {
"vega-canvas": "^1.2.7",
"vega-dataflow": "^5.7.5",
"vega-scale": "^7.3.0",
"vega-statistics": "^1.8.1",
"vega-util": "^1.17.1"
},
"devDependencies": {
"vega-transforms": "*"
}
}