forked from chrisrzhou/react-wordcloud
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.32 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "react-wordcloud",
"version": "1.2.2",
"description": "Simple React + D3 wordcloud component with powerful features.",
"main": "dist/index.js",
"module": "dist/index.module.js",
"types": "src/index.d.ts",
"keywords": [
"react",
"wordcloud",
"visualization",
"d3"
],
"author": "Chris Zhou <chrisrzhou@pm.me>",
"license": "MIT",
"repository": "https://github.com/chrisrzhou/react-wordcloud.git",
"bugs": "https://github.com/chrisrzhou/react-wordcloud/issues",
"homepage": "https://react-wordcloud.netlify.com/",
"scripts": {
"build": "yarn clean; rollup -c",
"build:docs": "yarn clean:docs; docz build",
"clean": "rm -rf .docz dist",
"clean:docs": "rm -rf .docz",
"docs": "yarn clean:docs; docz dev",
"lint": "xo --fix; tsc",
"prepare": "yarn build"
},
"dependencies": {
"d3-array": "^2.4.0",
"d3-cloud": "^1.2.5",
"d3-dispatch": "^1.0.6",
"d3-scale": "^3.2.1",
"d3-scale-chromatic": "^1.5.0",
"d3-selection": "1.4.1",
"d3-transition": "^1.3.2",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"resize-observer-polyfill": "^1.5.1",
"seedrandom": "^3.0.5",
"tippy.js": "^6.0.1"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"@types/d3-array": "^2.0.0",
"@types/d3-cloud": "^1.2.2",
"@types/d3-scale": "^2.2.0",
"@types/d3-scale-chromatic": "^1.3.1",
"@types/d3-selection": "^1.4.1",
"@types/lodash.clonedeep": "^4.5.6",
"@types/lodash.debounce": "^4.0.6",
"@types/seedrandom": "^2.4.28",
"docz": "^2.2.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-typescript": "^0.26.0",
"husky": "^4.2.3",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup": "^2.0.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.4.0",
"typescript": "^3.8.3",
"xo": "^0.27.2"
},
"peerDependencies": {
"react": "^16.13.0"
},
"resolutions": {
"d3-selection": "1.4.1"
},
"babel": {
"presets": [
"@babel/react"
]
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn build"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": true,
"trailingComma": "all"
},
"xo": {
"prettier": true,
"extends": [
"xo-react"
],
"rules": {
"import/no-unassigned-import": "off",
"react/function-component-definition": "off",
"react/prop-types": "off"
}
}
}