-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
executable file
·69 lines (55 loc) · 1.27 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
68
69
{
"name": "react-mount",
"version": "0.1.3",
"author": {
"name" : "Philipp Adrian",
"email" : "[email protected]",
"website" : "http://philippadrian.com"
},
"description": "React goes web component – Use custom tags to place react components directly in html.",
"license" :"MIT",
"repository": {
"type": "git",
"url": "https://github.com/greenish/react-mount.git#master"
},
"main":"react-mount.js",
"keywords": [
"react",
"reactjs",
"html",
"client",
"front end",
"mount",
"component",
"custom tag",
"web component"
],
"peerDependencies": {
"react": ">=0.13",
"react-tools" : ">=0.13"
},
"devDependencies": {
"react-mount" : "git://github.com/greenish/react-mount.git#master",
"react": "^0.13.1",
"react-tools" : "^0.13.1",
"react-bootstrap" : "^0.20.1",
"gulp" : "^3.8.11",
"gulp-jshint" : "^1.9.x",
"gulp-uglify" : "^1.0.x",
"gulp-rename" : "^1.2.2",
"gulp-git" : "^1.2.1",
"gulp-bump" : "^0.3.0",
"browserify": "^8.0.x",
"vinyl-transform": "^1.0.x",
"reactify" : "^1.1.0"
},
"engines": {
"node": ">=0.10.x"
},
"private" : false,
"browserify": {
"transform": [
["reactify"]
]
}
}