forked from jasondavies/d3-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 790 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
34
{
"name": "d3-cloud",
"version": "1.2.7",
"description": "Generate word clouds in JavaScript.",
"keywords": [
"word",
"cloud",
"tag",
"visualization",
"canvas"
],
"homepage": "https://www.jasondavies.com/wordcloud/",
"license": "BSD-3-Clause",
"author": {
"name": "Jason Davies",
"url": "https://www.jasondavies.com/"
},
"main": "build/d3.layout.cloud.js",
"module": "index",
"jsnext:main": "index",
"repository": {
"type": "git",
"url": "https://github.com/jasondavies/d3-cloud.git"
},
"scripts": {
"build": "mkdir -p build && browserify --standalone d3.layout.cloud index.js > build/d3.layout.cloud.js"
},
"dependencies": {
"d3-dispatch": "^1.0.3"
},
"devDependencies": {
"browserify": "^17.0.0"
}
}