forked from beyowi/react-wordcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.56 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
{
"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 <[email protected]>",
"license": "MIT",
"scripts": {
"clean": "rimraf build/*",
"build": "yarn clean && babel src --out-dir build",
"lint": "flow && eslint --fix src"
},
"dependencies": {
"d3-array": "^1.2.1",
"d3-cloud": "^1.2.4",
"d3-scale": "^1.0.6",
"d3-selection": "^1.3.0",
"d3-transition": "1",
"d3-selection-multi": "^1.0.1",
"invariant": "^2.2.2",
"lodash.uniqby": "^4.7.0",
"react": "^16.3.1",
"react-dom": "^16.3.1",
"tinycolor2": "^1.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.3",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.13.1",
"eslint-config-fbjs": "^2.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-flowtype": "^2.40.1",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-relay": "^0.0.20",
"flow-bin": "^0.61.0",
"prettier": "1.9.2",
"rimraf": "^2.6.2"
}
}