-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
65 lines (65 loc) · 1.9 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
{
"name": "react-native-square-in-app-payments",
"version": "1.7.6",
"description": "An open source React Native plugin for calling Square’s native In-App Payments SDK to take in-app payments on iOS and Android.",
"homepage": "https://github.com/square/in-app-payments-react-native-plugin",
"repository": {
"type": "git",
"url": "https://github.com/square/in-app-payments-react-native-plugin"
},
"main": "index.js",
"scripts": {
"lint": "eslint ./ --ext .js,.ts",
"test": "jest",
"test-coverage": "jest --collectCoverage"
},
"keywords": [
"react-native",
"in-app-payments",
"square",
"payments"
],
"author": "Square, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^17.0.23",
"@types/react": "^17.0.11",
"@types/react-native": "^0.64.10",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"babel-eslint": "^10.1.0",
"babel-jest": "27.0.1",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-native": "^3.11.0",
"jest": "^27.0.6",
"metro-react-native-babel-preset": "0.56.0",
"react": "18.2.0",
"react-native": "0.74.1",
"react-test-renderer": "16.9.0",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
},
"peerDependencies": {
"react-native": ">= 0.57.8"
},
"jest": {
"preset": "react-native",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"modulePathIgnorePatterns": [
"react-native-in-app-payments-quickstart"
]
},
"resolutions": {
"**/**/handlebars": "4.5.3",
"**/**/logkitty": "^0.7.1",
"**/**/minimist": "^0.2.1"
}
}