forked from jfcaiceo/react-lightbox-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.43 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.43 KB
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
{
"name": "react-lightbox-component",
"version": "0.1.0",
"description": "An image lightbox component for ReactJS",
"author": "Jose Francisco Caiceo",
"keywords": [
"react-component",
"react",
"ReactJS",
"lightbox",
"images"
],
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babelify": "^7.2.0",
"browser-sync": "^2.11.0",
"browserify": "^12.0.1",
"browserify-global-shim": "^1.0.0",
"del": "^2.2.0",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.1.0",
"gulp-concat": "^2.6.0",
"gulp-minify-css": "^1.2.3",
"gulp-sass": "^2.1.1",
"gulp-uglify": "^1.5.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.19",
"karma-browserify": "^5.0.1",
"karma-chrome-launcher": "^0.2.2",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.7",
"karma-safari-launcher": "^0.1.1",
"react-addons-test-utils": "^0.14.7",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {
"babel-preset-react": "^6.5.0",
"babelify": "^7.2.0",
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git://github.com/jfcaiceo/react-lightbox-component.git"
},
"scripts": {
"test": "gulp test",
"build": "babel --presets es2015,react src/ --out-dir lib/",
"prepublish": "npm run build"
}
}