-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.35 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
{
"name": "react-image-magnifiers",
"version": "1.4.0",
"description": "A collection of responsive, image magnifying React components for mouse and touch.",
"keywords": [
"react",
"image",
"photo",
"picture",
"magnify",
"magnifying glass",
"magnifier",
"zoom",
"enlarge",
"responsive",
"touch",
"ecommerce",
"product"
],
"license": "MIT",
"author": "Adam Risberg <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/adamrisberg/react-image-magnifiers.git"
},
"homepage": "https://adamrisberg.github.io/react-image-magnifiers",
"main": "dist/index.js",
"scripts": {
"start": "webpack-dev-server --mode development",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"transpile": "rimraf dist && babel src -d dist --ignore src/__tests__/*",
"prepublishOnly": "npm run transpile",
"build": "rimraf examples/dist && webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy"
},
"peerDependencies": {
"react": "^16.8.0",
"react-dom": "^16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.10.4",
"@babel/core": "^7.10.4",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@types/jest": "^24.9.1",
"babel-eslint": "^9.0.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"css-loader": "^2.1.1",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-loader": "^2.2.1",
"eslint-plugin-flowtype": "^2.50.3",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.3",
"file-loader": "^3.0.1",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^2.7.1",
"style-loader": "^0.23.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"websocket-extensions": "^0.1.4"
},
"dependencies": {
"prop-types": "^15.7.2",
"react-input-position": "^1.3.1"
}
}