forked from square/in-app-payments-react-native-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "react-native-square-in-app-payments",
"version": "1.3.0",
"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",
"test": "jest",
"test-coverage": "jest --collectCoverage"
},
"keywords": [
"react-native",
"in-app-payments",
"square",
"payments"
],
"author": "Square, Inc.",
"license": "Apache-2.0",
"devDependencies": {
"babel-eslint": "^10.0.0",
"babel-jest": "24.1.0",
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-react-native": "^3.2.1",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "0.51.1",
"react": "16.6.3",
"react-native": "0.60.5",
"react-test-renderer": "16.6.3"
},
"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"
]
}
}