-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.33 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "@bounceapp/react-native-paypal",
"private": false,
"license": "MIT",
"version": "0.6.0",
"description": "React Native wrapper to bridge PayPal iOS and Android SDK",
"keywords": [
"expo",
"paypal",
"braintree",
"react-native",
"ios",
"android"
],
"repository": "https://github.com/Bounceapp/react-native-paypal",
"author": "Bounce (https://usebounce.com)",
"bugs": {
"url": "https://github.com/Bounceapp/react-native-paypal/issues"
},
"homepage": "https://github.com/Bounceapp/react-native-paypal#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-paypal.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest --passWithNoTests",
"typecheck": "tsc",
"lint": "npx eslint . --ext .ts,.tsx,.js",
"lint:fix": "npx eslint . --ext .ts,.tsx,.js --fix",
"lint-staged": "lint-staged --allow-empty",
"prepare": "bob build && husky install",
"release": "release-it",
"docs": "yarn typedoc ./src/index.tsx --out ./docs --tsconfig ./tsconfig.json --readme none --sort source-order",
"example": "yarn --cwd example",
"bootstrap": "yarn example && yarn"
},
"devDependencies": {
"@babel/eslint-parser": "7.25.9",
"@commitlint/cli": "17.8.1",
"@commitlint/config-conventional": "17.8.1",
"@expo/prebuild-config": "~8.0.0",
"@react-native-community/eslint-config": "3.2.0",
"@release-it/conventional-changelog": "5.1.1",
"@types/eslint": "8.56.12",
"@types/eslint-plugin-prettier": "3.1.3",
"@types/jest": "28.1.8",
"@types/prettier": "2.7.3",
"@types/react": "~18.3.12",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"commitlint": "17.8.1",
"eslint": "8.57.1",
"eslint-config-prettier": "8.10.0",
"eslint-config-universe": "11.3.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-react-native": "4.1.0",
"eslint-plugin-unused-imports": "2.0.0",
"expo": "~52.0.17",
"husky": "8.0.3",
"jest": "^29.2.1",
"lint-staged": "13.3.0",
"pod-install": "0.3.2",
"prettier": "2.8.8",
"react": "18.3.1",
"react-native": "0.76.3",
"react-native-builder-bob": "0.35.2",
"react-native-svg": "15.8.0",
"release-it": "15.11.0",
"typedoc": "0.27.5",
"typescript": "~5.7.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-svg": "*"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "npx eslint --cache --fix",
"*.{ts,tsx,js,jsx,css,md,json}": "npx prettier --write"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}