forked from ethanselzer/react-image-magnify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.32 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
{
"name": "react-image-magnify",
"version": "1.7.0",
"description": "A React image magnification component for desktop and touch.",
"repository": {
"type": "git",
"url": "https://github.com/ethanselzer/react-image-magnify.git"
},
"author": "Ethan Selzer <ethanselzer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethanselzer/react-image-magnify/issues"
},
"homepage": "https://github.com/ethanselzer/react-image-magnify",
"keywords": [
"react-image-zoom",
"react-image-magnifier",
"react-image-enlarger",
"react-image-lens",
"react-photo-zoom",
"react-photo-magnifier",
"react-photo-enlarger",
"react-photo-lens",
"react-zoom",
"react-magnify",
"react-lens",
"image zoom",
"image magnifier",
"image enlarger",
"photo zoom",
"photo magnifier",
"photo enlarger",
"zoom",
"magnify",
"enlarge"
],
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "babel --plugins 'transform-es2015-modules-umd' src --out-dir ./dist",
"prepublish-cjs": "babel src --out-dir ./dist",
"build-watch": "babel src --watch --out-dir ./dist",
"lint": "eslint \"@(src|test)/**/*.js\"",
"testonly": "mocha --require babel-core/register --require test/support/jsdom.js test/*.spec.js",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.0.0",
"enzyme": "^2.8.2",
"eslint": "^3.19.0",
"eslint-plugin-react": "^4.2.3",
"jsdom": "^11.0.0",
"mocha": "^3.4.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.5.4",
"sinon": "^2.3.2"
},
"peerDependencies": {
"react": "~0.14.9 || ^15.0.0"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"clamp": "^1.0.1",
"prop-types": "^15.5.10",
"react-cursor-position": "2.0.2",
"react-hover-observer": "^2.0.1",
"react-required-if": "^1.0.1"
}
}