-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 838 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 838 Bytes
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
{
"name": "react-component-visibility",
"version": "2.1.0",
"description": "A mixin for determining whether a component is visible to the user or not.",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Pomax/react-component-visibility.git"
},
"keywords": [
"React",
"visible",
"visibility",
"mixin",
"react-component"
],
"author": "Pomax",
"license": "MIT",
"bugs": {
"url": "https://github.com/Pomax/react-component-visibility/issues"
},
"scripts": {
"test": "mocha"
},
"homepage": "https://github.com/Pomax/react-component-visibility",
"devDependencies": {
"chai": "^3.2.0",
"jsdom": "^3.1.2",
"react": "^15.0.2",
"react-dom": "^15.0.2"
},
"peerDependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2"
}
}