forked from annalo/react-image-magnifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "react-image-magnifier",
"version": "3.0.0",
"description": "A react component that accepts a high-res source image and produces a magnifier window on mouse hover over the part of the image the cursor is over",
"main": "lib/index.js",
"scripts": {
"lint": "eslint src",
"build": "rimraf lib && babel src/ -d lib/"
},
"repository": {
"type": "git",
"url": "https://github.com/lelandrichardson/react-image-magnifier.git"
},
"keywords": [
"react",
"react-component",
"image",
"magnifier"
],
"author": "Leland Richardson",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"es5-shim": "^4.1.3",
"eslint": "^3.5.0",
"eslint-plugin-react": "^6.3.0",
"node-libs-browser": "^0.5.2",
"prop-types": "^15.6.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "^2.5.4",
"webpack": "^1.9.10"
}
}