forked from chrisrzhou/react-wordcloud
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.23 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.23 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
36
37
38
39
{
"name": "react-wordcloud",
"version": "0.1.0",
"description": "Powerful React + D3 word cloud component with rich features. Based on the original word cloud generator: https://www.jasondavies.com/wordcloud/.",
"main": "build/index.js",
"repository": "https://github.com/chrisrzhou/react-wordcloud",
"author": "Chris Zhou <christoper.r.zhou@gmail.com>",
"license": "MIT",
"type":"commonjs",
"scripts": {
"clean": "rimraf build/*",
"build": "npm run clean && npx babel src --out-dir build",
"lint": "flow && eslint --fix src",
"prepare": "npm run build"
},
"dependencies": {
"d3-array": "^1.2.1",
"d3-cloud": "^1.2.4",
"d3-scale": "^4.0.2",
"d3-selection": "^1.1.0",
"invariant": "^2.2.2",
"lodash": "^4.17.4",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-function-bind": "^7.24.7",
"@babel/plugin-transform-flow-strip-types": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/preset-flow": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"@babel/preset-stage-0": "^7.8.3",
"flow-bin": "^0.61.0",
"prettier": "1.9.2",
"rimraf": "^2.6.2"
}
}