-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.91 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
{
"name": "react-content-zoom",
"version": "1.0.3",
"description": "React lightweight stateless component for image zoom on mouse hover",
"main": "dist/contentzoom.js",
"scripts": {
"dev": "webpack-dev-server --hot --inline",
"build": "webpack -p",
"clean": "rm -r dist",
"test": "jest -u",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"jest": {
"browser": true,
"moduleNameMapper": {
"\\.(css|less)$": "identity-obj-proxy"
},
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"setupFiles": [
"./__tests__/setup.js"
],
"testRegex": "__tests__/.*\\.test\\.js$",
"verbose": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/eubash/react-content-zoom"
},
"author": "Evgeniya Bashieva <ssimplatina@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/eubash/react-content-zoom"
},
"keywords": [
"react",
"image",
"photo",
"picture",
"zoom",
"enlarge",
"magnify",
"ecommerce",
"shopping",
"product"
],
"homepage": "https://github.com/eubash/react-content-zoom",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^6.2.4",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "6.26.0",
"css-loader": "^0.25.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"eslint": "^4.15.0",
"eslint-plugin-react": "^6.10.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.0.5",
"react-native": "^0.52.0",
"sinon": "^4.1.4",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"dependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
}
}