forked from jossmac/react-images
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "react-images",
"version": "0.5.2",
"description": "A simple, responsive lightbox component for displaying an array of images with React.js",
"main": "lib/Lightbox.js",
"author": "Joss Mackison",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jossmac/react-images.git"
},
"dependencies": {
"aphrodite": "^0.5.0",
"react-addons-css-transition-group": "^15.3.0",
"react-scrolllock": "^1.0.1"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"babel": "^6.5.2",
"eslint-config-keystone": "2.2.0",
"eslint-plugin-react": "5.1.1",
"eslint": "2.9.0",
"gulp": "^3.9.0",
"react-component-gulp-tasks": "^0.7.0",
"react-dom": "^15.3.0",
"react": "^15.3.0"
},
"peerDependencies": {
"react-dom": "^0.14 || ^15.0",
"react": "^0.14 || ^15.0"
},
"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 src/** examples/src/app.js examples/src/components/Gallery.js",
"publish:examples": "gulp publish:examples",
"release": "gulp release",
"start": "gulp dev",
"watch": "gulp watch:lib"
},
"bugs": {
"url": "https://github.com/jossmac/react-images/issues"
},
"homepage": "http://jossmac.github.io/react-images",
"keywords": [
"react",
"react-component",
"react-images",
"react-lightbox",
"react-carousel",
"react-gallery",
"react images",
"react lightbox",
"react carousel",
"react gallery",
"lightbox",
"carousel",
"gallery"
]
}