forked from madox2/react-tagcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
{
"name": "react-tagcloud",
"version": "1.4.1",
"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/",
"prepublish": "npm run compile",
"test": "jest",
"lint": "eslint src/**"
},
"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": {
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react/",
"<rootDir>/node_modules/object-assign/",
"<rootDir>/node_modules/react-dom/",
"<rootDir>/node_modules/react-addons-test-utils/"
],
"verbose": true,
"collectCoverage": true
},
"dependencies": {
"object-assign": "^4.1.0",
"prop-types": "^15.6.2",
"randomcolor": "^0.4.2",
"shuffle-array": "^1.0.1"
},
"peerDependencies": {
"react": "^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.8.0",
"babel-eslint": "^7.1.0",
"babel-jest": "^17.0.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^4.18.2",
"eslint-plugin-react": "^6.0.0",
"jest-cli": "^17.0.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"webpack": "^1.13.3"
}
}