forked from malaman/react-image-zoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.02 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
{
"name": "react-image-zoom",
"version": "0.0.2",
"description": "react based image zoomer on mouse hover",
"homepage": "https://github.com/malaman/react-image-zoom",
"repository": {
"type": "git",
"url": "git+https://github.com/malaman/react-image-zoom.git"
},
"main": "index.js",
"license": "MIT",
"dependencies": {
"js-image-zoom": "0.0.2"
},
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.6.5",
"babel-core": "^6.7.4",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-object-assign": "^6.5.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"chai": "^3.5.0",
"enzyme": "^2.2.0",
"eslint": "^2.6.0",
"eslint-config-airbnb": "^6.2.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-react": "^4.2.3",
"mocha": "^2.4.5",
"react": "^15.2.0",
"react-dom": "^15.2.0",
"sinon": "^1.17.3",
"uglify-js": "^2.6.2",
"webpack": "^1.12.14",
"webpack-umd-external": "^1.0.2"
},
"scripts": {
"build": "npm run build-babel && npm run build-dist-dev && npm run build-dist-prod",
"build-dist-dev": "NODE_ENV=development webpack --config webpack.config --colors",
"build-dist-prod": "NODE_ENV=production webpack --config webpack.config --progress --colors -p",
"build-example": "browserify ./example/index.js -t [ babelify --presets [ es2015 stage-0 react ] --plugins [ transform-object-assign ] ] | uglifyjs -cm > ./example/bundle.min.js",
"build-babel": "babel ./src/react-image-zoom.js --out-file index.js",
"lint": "eslint ./src",
"lint-dev": "eslint --fix ./src"
},
"bugs": {
"url": "https://github.com/malaman/react-image-zoom/issues"
},
"directories": {
"example": "example"
},
"keywords": [
"react",
"image",
"zoom"
],
"author": "Andrii Malaman <[email protected]>"
}