-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
64 lines (64 loc) · 1.81 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
{
"name": "react-native-share-pdf",
"version": "0.0.7",
"description": "React native share PDF base64",
"main": "lib/index.js",
"scripts": {
"prepare": "npm run build",
"prepack": "npm run build",
"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",
"build": "./node_modules/.bin/tsc"
},
"files": [
"lib",
"android",
"/android/src/**/*.java",
"/android/src/**/*.xml",
"src/index.tsx"
],
"keywords": [
"react-native base64 share pdf"
],
"author": "Maxime Gerbe <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": "18.*",
"react-native": "0.*"
},
"devDependencies": {
"@jest/globals": "^29.6.3",
"@types/jest": "^29.5.4",
"@types/react-native": "^0.64.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^5",
"codecov": "^3.0.0",
"eslint": "^8.47.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"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MadeinFrance/react-native-share-pdf.git"
},
"bugs": {
"url": "https://github.com/MadeinFrance/react-native-share-pdf/issues"
},
"homepage": "https://github.com/MadeinFrance/react-native-share-pdf#readme"
}