forked from neptunian/react-photo-gallery
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "react-photo-gallery",
"version": "4.2.4",
"description": "Responsive React Photo Gallery Component",
"main": "lib/Gallery.js",
"author": "Sandy Gonzales",
"license": "MIT",
"homepage": "https://github.com/neptunian/react-photo-gallery",
"repository": {
"type": "git",
"url": "https://github.com/neptunian/react-photo-gallery.git"
},
"bugs": {
"url": "https://github.com/neptunian/react-photo-gallery/issues"
},
"dependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7",
"react-images": "^0.3.2"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-eslint": "^4.0.10",
"eslint": "^1.2.1",
"eslint-plugin-react": "^3.2.3",
"gulp": "^3.9.0",
"jquery": "^2.1.4",
"lodash": "^3.10.1",
"react-component-gulp-tasks": "^0.7.0"
},
"peerDependencies": {
"react": ">=0.14"
},
"browserify-shim": {
"react": "global:React"
},
"scripts": {
"build": "gulp clean && NODE_ENV=production gulp build",
"bump": "gulp bump",
"bump:major": "gulp bump:major",
"bump:minor": "gulp bump:minor",
"examples": "gulp dev:server",
"lint": "eslint .",
"publish:examples": "gulp publish:examples",
"release": "gulp release",
"start": "gulp dev",
"watch": "gulp watch:lib"
},
"keywords": [
"react",
"react component",
"react-component",
"photo gallery",
"responsive",
"image gallery",
"images"
]
}