forked from frontend-collective/react-image-lightbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.51 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.51 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
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": "react-image-lightbox",
"version": "4.2.2",
"description": "A lightbox component for React.js",
"scripts": {
"build": "npm run clean && cross-env NODE_ENV=production TARGET=umd webpack --bail",
"build:demo": "npm run clean:demo && cross-env NODE_ENV=production TARGET=demo webpack --bail",
"clean": "rimraf dist",
"clean:demo": "rimraf build",
"start": "cross-env NODE_ENV=development TARGET=development webpack-dev-server --inline --hot",
"lint": "eslint src examples",
"prettier": "prettier --single-quote --trailing-comma es5 --write \"{src,examples}/**/*.{js,jsx,css,scss}\"",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"test": "jest",
"test:watch": "jest --watchAll",
"deploy": "npm run build:demo && gh-pages -d build"
},
"main": "dist/main.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/fritz-c/react-image-lightbox.git"
},
"homepage": "https://fritz-c.github.io/react-image-lightbox",
"bugs": "https://github.com/fritz-c/react-image-lightbox/issues",
"authors": [
"Chris Fritz"
],
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.8",
"react-modal": "^1.4.0"
},
"peerDependencies": {
"react": "^15.5.0",
"react-dom": "^15.5.0"
},
"devDependencies": {
"autoprefixer": "^7.1.4",
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^7.1.2",
"babel-plugin-transform-exponentiation-operator": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.11.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"enzyme": "^3.1.0",
"eslint": "^4.8.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"file-loader": "^1.1.4",
"gh-pages": "^1.0.0",
"html-webpack-plugin": "^2.22.0",
"isomorphic-style-loader": "^4.0.0",
"jest": "^21.2.1",
"jest-enzyme": "^4.0.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prettier": "^1.7.4",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"rimraf": "^2.5.3",
"sass-loader": "^6.0.6",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"webpack-node-externals": "^1.6.0"
},
"keywords": [
"react",
"react-component",
"image",
"lightbox"
]
}