forked from rpearce/react-medium-image-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "react-medium-image-zoom",
"version": "1.0.3",
"description": "Medium.com style image zoom for React",
"main": "lib/react-medium-image-zoom.js",
"scripts": {
"build": "babel src/react-medium-image-zoom.js -o lib/react-medium-image-zoom.js",
"build:example": "npm run build && browserify example/src/app.js -o example/build/app.js -t [ babelify ]",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpearce/react-medium-image-zoom.git"
},
"keywords": [
"react",
"react-component",
"medium",
"zoom",
"modal"
],
"tags": [
"react",
"medium",
"modal",
"zoom",
"image"
],
"author": "Robert Pearce",
"license": "MIT",
"bugs": {
"url": "https://github.com/rpearce/react-medium-image-zoom/issues"
},
"homepage": "https://github.com/rpearce/react-medium-image-zoom#readme",
"peerDependencies": {
"prop-types": "^15.5.8",
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-latest": "^6.22.0",
"babel-preset-react": "^6.11.1",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"react": "15.5.4",
"react-dom": "15.5.4"
}
}