forked from AdamRisberg/react-image-magnifiers
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
86 lines (86 loc) · 2.38 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
82
83
84
85
86
{
"name": "@datobs/react-image-magnifiers",
"version": "1.4.8",
"files": [
"*.md",
"dist",
"LICENCE",
"package.json"
],
"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 <myniztan@hotmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/datobs/react-image-magnifiers.git"
},
"homepage": "https://github.com/datobs/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 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@types/jest": "^29.5.1",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"enzyme": "^3.11.0",
"eslint": "^8.40.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"gh-pages": "^5.0.0",
"html-webpack-plugin": "^5.5.1",
"jest": "^29.5.0",
"np": "^7.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.0",
"style-loader": "^3.3.2",
"webpack": "^5.82.0",
"webpack-cli": "^5.1.1",
"webpack-dev-server": "^4.15.0",
"websocket-extensions": "^0.1.4"
},
"dependencies": {
"@datobs/react-input-position": "^1.3.3",
"prop-types": "^15.7.2"
}
}