forked from naoufal/react-native-payments
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "@appfolio/react-native-payments",
"version": "0.14.0",
"description": "Welcome to the best and most comprehensive library for integrating payments like Apple Pay and Google Pay into your React Native app.",
"scripts": {
"run:packager": "cd examples/native && yarn run:packager",
"run:ios": "cd examples/native && yarn run:ios",
"run:web": "cd examples/web && yarn run:web",
"run:demo": "cd examples/native && yarn run:demo",
"lint": "eslint ./lib/js",
"lint:fix": "npm run lint -- --fix",
"test": "jest"
},
"homepage": "https://github.com/appfolio/react-native-payments",
"repository": {
"type": "git",
"url": "https://github.com/appfolio/react-native-payments.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"react",
"react-native",
"apple-pay",
"stripe",
"payments",
"payment-request",
"sca",
"strong customer authentication",
"2 factor",
"2fa",
"android",
"ios",
"payment intents",
"cross platform"
],
"author": "Naoufal Kadhom & Freeman Industries",
"license": "MIT",
"dependencies": {
"es6-error": "^4.0.2",
"uuid": "^3.1.0",
"validator": "^13.12.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "27.5.1",
"metro-react-native-babel-preset": "^0.72.3",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.17.3",
"husky": "^0.14.1",
"jest": "27.5.1",
"react-native": "0.74.4",
"react-test-renderer": "18.1.0"
},
"peerDependencies": {
"react": ">=18",
"react-native": ">=0.70"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/"
]
},
"main": "js/index.js"
}