This repository has been archived by the owner on Nov 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 113
/
package.json
67 lines (67 loc) · 1.72 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
{
"name": "@dudigital/react-native-zoomable-view",
"version": "1.1.4",
"description": "A view component for react-native with pinch to zoom, tap to move and double tap to zoom capability.",
"main": "dist/index.js",
"scripts": {
"build": "rollup -c",
"start": "rollup -c -w",
"transpile": "rollup -c -w",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.tsx\"",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "npm run build"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/DuDigital/react-native-zoomable-view.git"
},
"keywords": [
"react-native",
"react-component",
"ios",
"android",
"pinch-to-zoom",
"pinch",
"mobile",
"native",
"component",
"view",
"zoom",
"zoomable",
"double",
"tap"
],
"author": "Simon Auer",
"license": "MIT",
"bugs": {
"url": "https://github.com/DuDigital/react-native-zoomable-view/issues"
},
"homepage": "https://github.com/DuDigital/react-native-zoomable-view#readme",
"types": "typings/index.d.ts",
"dependencies": {
"prop-types": "^15.7.2",
"react-native": ">=0.54.0"
},
"devDependencies": {
"@types/react": ">=16.8.0",
"@types/react-native": "^0.64.10",
"babel-core": "^7.0.0-bridge.0",
"babel-runtime": "^6.26.0",
"prettier": "^2.3.1",
"rollup": "^2.51.1",
"rollup-plugin-typescript2": "^0.30.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.3.2"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.54.0"
}
}