-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.48 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
{
"name": "react-select-popover",
"version": "0.1.1",
"description": "A react component to convert a select box into a nifty popover with prepopulated options",
"main": "lib/select-popover.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/bharani91/react-select-popover.git"
},
"bugs": {
"url": "https://github.com/bharani91/react-select-popover/issues"
},
"homepage": "https://github.com/bharani91/react-select-popover",
"keywords": [
"react",
"select-box",
"popover",
"react-component"
],
"author": "Bharani Muthukumaraswamy",
"license": "MIT",
"devDependencies": {
"browserify": "^10.2.6",
"browserify-shim": "^3.8.9",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^2.1.0",
"gulp-concat": "^2.5.2",
"gulp-connect": "^2.2.0",
"gulp-copy": "0.0.2",
"gulp-cssmin": "^0.1.7",
"gulp-react": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.1.1",
"gulp-sourcemaps": "^1.5.0",
"gulp-streamify": "^0.0.5",
"gulp-uglify": "^1.2.0",
"reactify": "^1.1.1",
"vinyl-source-stream": "^1.1.0"
},
"peerDependencies": {
"react": "^0.14.2"
},
"dependencies": {
"react-dom": "^0.14.2",
"react-onclickoutside": "4.0.1"
},
"browserify-shim": {
"classnames": "global:classNames",
"react": "global:React",
"react-dom": "global:ReactDOM",
"react-onclickoutside": "global:OnClickOutside"
}
}