forked from treyhuffine/lightbox-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.5 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
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "lightbox-react",
"version": "0.1.5",
"description": "Lightbox for React components or images",
"scripts": {
"build": "npm run lint && npm run build:demo && npm run build:umd",
"build:demo": "npm run clean:demo && cross-env NODE_ENV=production webpack --config webpack.config.demo.babel.js --bail",
"build:umd": "npm run clean:umd && cross-env NODE_ENV=production webpack --config webpack.config.umd.babel.js --bail",
"clean": "npm run clean:demo && npm run clean:umd",
"clean:demo": "rimraf build",
"clean:umd": "rimraf dist/umd",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --inline --config webpack.config.dev.babel.js",
"test": "webpack",
"lint": "eslint src",
"deploy": "npm run build && gh-pages -d build",
"prepublish": "npm run lint && npm run build:umd"
},
"main": "dist/umd/lightbox-react.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/treyhuffine/lightbox-react.git"
},
"homepage": "http://treyhuffine.com/lightbox-react/",
"bugs": "https://github.com/treyhuffine/lightbox-react/issues",
"authors": [
"Trey Huffine",
"Chris Fritz <forked>"
],
"license": "MIT",
"dependencies": {
"is-react": "^1.0.0",
"react-modal": "^1.4.0"
},
"peerDependencies": {
"prop-types": "^15.5.8",
"react": "^15.0.0",
"react-dom": "^15.0.0"
},
"devDependencies": {
"autoprefixer": "^6.3.7",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.4",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"cross-env": "^3.1.3",
"css-loader": "^0.26.0",
"eslint": "^3.2.2",
"eslint-config-blue-hour": "^0.2.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"file-loader": "^0.9.0",
"gh-pages": "^0.12.0",
"html-webpack-plugin": "^2.22.0",
"node-sass": "^3.8.0",
"postcss-loader": "^1.1.0",
"prop-types": "^15.5.8",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-hot-loader": "^1.3.0",
"rimraf": "^2.5.3",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"keywords": [
"react",
"react-component",
"video",
"image",
"component",
"lightbox"
]
}