-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
68 lines (68 loc) · 2.06 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
{
"name": "react-native-view-pdf",
"version": "0.14.0",
"description": "React native Pdf viewer implementation",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"prepack": "npm run build",
"build": "./node_modules/.bin/tsc",
"test": "jest",
"test-coverage": "jest --coverage",
"test-coverage-report": "codecov",
"lint": "eslint --ext .js --ext .ts --ext .tsx ./src/",
"check-types": "./node_modules/.bin/tsc --noEmit"
},
"keywords": [
"react-native react-component pdf viewer view android ios pdf"
],
"author": "Maksym Rusynyk <[email protected]>, Sander Frenken <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60"
},
"devDependencies": {
"@types/formidable": "^1.2.2",
"@types/jest": "^28.1.6",
"@types/pixelmatch": "^5.2.3",
"@types/pngjs": "^6.0.0",
"@types/react-native": "^0.64.6",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"codecov": "^3.0.0",
"eslint": "^7.27.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^28.1.3",
"react": "17.0.1",
"react-native": "0.64.1",
"react-test-renderer": "17.0.1",
"ts-jest": "^28.0.6",
"typescript": "^4.2.4"
},
"files": [
"src/index.tsx",
"src/RNPDFView.tsx",
"lib",
"android/build.gradle",
"android/src/main/AndroidManifest.xml",
"android/src/main/java/com/rumax/reactnative/pdfviewer/*.java",
"RNPDF.podspec",
"ReactNativeViewPDF.xcodeproj/project.pbxproj",
"ReactNativeViewPDF/*.h",
"ReactNativeViewPDF/*.m"
],
"dependencies": {},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rumax/react-native-PDFView.git"
},
"bugs": {
"url": "https://github.com/rumax/react-native-PDFView/issues"
},
"homepage": "https://github.com/rumax/react-native-PDFView#readme"
}