-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.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
{
"name": "react-cursor-zoom",
"version": "1.3.0",
"description": "A react component that uses a high-res source image to produce a zoom window on mouse hover",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"dev": "webpack --watch",
"build-lib": "babel src --out-dir lib --ignore src/app.js,src/demo.jsx"
},
"repository": {
"type": "git",
"url": "https://github.com/CarMax/react-cursor-zoom.git"
},
"keywords": [
"react",
"react-component",
"image",
"cursor",
"magnifier",
"zoom"
],
"author": "CarMax",
"license": "MIT",
"peerDependencies": {
"react": "15.x || 16.x",
"react-dom": "15.x || 16.x"
},
"jest": {
"testRegex": "(/test/.*|\\.(test|spec))\\.(js|json|jsx)$",
"setupFiles": [
"<rootDir>/jest.setup.js"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"babel-jest": "^24.9.0",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^24.9.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
}
}