forked from atanych/react-tagcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.46 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
{
"name": "react-tagcloud",
"version": "0.6.1",
"description": "Tag/word cloud component for react",
"main": "lib/index.js",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"test": "jest",
"lint": "eslint ."
},
"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": {
"array-shuffle": "^1.0.0",
"object-assign": "^4.1.0",
"randomcolor": "^0.4.2"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.9.0",
"babel-core": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-jest": "^14.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react-optimize": "*",
"babel-preset-stage-0": "^6.6.0",
"babel-preset-react": "^6.5.0",
"eslint": "^3.2.2",
"eslint-plugin-react": "^6.0.0",
"jest-cli": "^14.1.0",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"react-addons-test-utils": "^15.0.2",
"babel-plugin-transform-runtime": "^6.9.0"
}
}