-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 928 Bytes
/
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
{
"name": "react-mirror",
"version": "1.0.1",
"description": "Takes control of component's rendering cycle allowing many synchronized replicas of it's DOM",
"repository": {
"type": "git",
"url": "git://github.com/Theadd/react-mirror.git"
},
"scripts": {
"build": "babel ./src --out-dir ./lib",
"test": "standard src/**/*"
},
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"author": {
"name": "theadd",
"url": "https://github.com/Theadd/"
},
"bugs": {
"url": "https://github.com/Theadd/react-mirror/issues"
},
"homepage": "https://Theadd.github.io/react-mirror/",
"dependencies": {},
"devDependencies": {
"babel": "^5.8.23",
"standard": "^5.3.1"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"keywords": [
"react",
"reactjs",
"react-component",
"mirror",
"portal"
],
"license": "MIT"
}