-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
89 lines (89 loc) · 2.34 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
87
88
89
{
"name": "react-responsive-pinch-zoom-pan",
"version": "0.3.0",
"description": "Enables zooming and panning an image, both mobile and desktop.",
"main": "dist/PinchZoomPan.js",
"scripts": {
"start": "webpack-dev-server --mode development --host 0.0.0.0",
"test": "jest",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "npm run transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "npm run build && npm run deploy"
},
"keywords": [
"react",
"reactjs",
"responsive",
"pinch",
"zoom",
"pan",
"image"
],
"license": "MIT",
"peerDependencies": {
"react": "^16.3.0",
"react-dom": "^16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "7.1.6",
"@babel/plugin-proposal-class-properties": "^7.3.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "23.6.0",
"babel-loader": "8.0.4",
"css-loader": "1.0.0",
"file-loader": "2.0.0",
"gh-pages": "^2.0.1",
"html-webpack-plugin": "4.0.0-alpha.2",
"jest": "23.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"style-loader": "0.23.0",
"url-loader": "1.1.1",
"webpack": "^4.43.0",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "3.1.14"
},
"author": "Brad Stiff",
"homepage": "https://github.com/bradstiff/react-responsive-pinch-zoom-pan",
"repository": {
"type": "git",
"url": "[email protected]:bradstiff/react-responsive-pinch-zoom-pan.git"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.13",
"@fortawesome/free-solid-svg-icons": "^5.7.0",
"@fortawesome/react-fontawesome": "^0.1.4",
"reselect": "^4.0.0",
"warning": "^4.0.2"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.{js,jsx,ts,tsx}"
],
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"moduleFileExtensions": [
"js"
]
},
"babel": {
"presets": [
"@babel/env",
"@babel/react"
],
"plugins": [
"@babel/plugin-proposal-class-properties"
]
}
}