-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
67 lines (67 loc) · 1.74 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-tagcloud",
"version": "2.3.3",
"description": "Tag/word cloud component for react",
"keywords": [
"react-tagcloud",
"react",
"tag-cloud",
"word-cloud",
"tagcloud",
"wordcloud"
],
"main": "lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"compile:watch": "while inotifywait -e close_write src/*.js; do yarn compile; done",
"prepublish": "npm run compile",
"test": "jest",
"lint": "eslint src/**/*.js __tests__/**/*.js"
},
"author": "madox2",
"license": {
"type": "MIT",
"url": "https://github.com/madox2/react-tagcloud/blob/master/LICENSE"
},
"repository": {
"type": "git",
"url": "https://github.com/madox2/react-tagcloud.git"
},
"jest": {
"testRegex": "(/__tests__/.*-test)\\.js?$",
"testEnvironment": "jsdom"
},
"dependencies": {
"prop-types": "^15.6.2",
"randomcolor": "^0.6.2",
"seedrandom": "^3.0.5",
"shuffle-array": "^1.0.1"
},
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@babel/preset-react": "^7.16.5",
"babel-eslint": "^10.0.0",
"babel-jest": "^27.4.5",
"eslint": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-react-hooks": "^4.0.8",
"jest-cli": "^27.4.5",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"upgrade": "^1.1.0",
"webpack": "^5.65.0",
"yarn": "^1.22.17"
}
}