-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
82 lines (82 loc) · 2.38 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
{
"name": "react-native-stripe-checkout-webview",
"version": "0.0.13",
"description": "💰 React Native implementation for Stripe.js Checkout",
"author": {
"name": "Ahmed Tarek",
"email": "[email protected]",
"url": "https://github.com/A-Tokyo"
},
"main": "src/index.js",
"files": [
"src/",
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/a-tokyo/react-native-stripe-checkout-webview.git"
},
"scripts": {
"build": "rm -rf lib && yarn build:flow && yarn build:js",
"build:js": "babel src --out-dir lib -s --ignore *.test.js,**/*.test.js",
"build:flow": "flow-copy-source -v -i '*.test.js' -i '**/*.test.js' src lib",
"test": "yarn build && yarn jest --coverage"
},
"keywords": [
"react-native",
"react",
"react-component",
"ios",
"android",
"stripe",
"stripe.js",
"stripe-sdk",
"react-native-stripe",
"checkout",
"stripe-checkout",
"elements",
"react-native-expo",
"expo",
"webview",
"types",
"flow",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/a-tokyo/react-native-stripe-checkout-webview/issues"
},
"homepage": "https://github.com/a-tokyo/react-native-stripe-checkout-webview#readme",
"peerDependencies": {
"react-native": "*",
"react-native-webview": "*"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-transform-react-jsx": "^7.13.12",
"@babel/plugin-transform-regenerator": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-flow": "^7.12.13",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/react-hooks": "^5.1.0",
"@testing-library/user-event": "^13.0.14",
"babel-jest": "^26.6.3",
"babel-plugin-lodash": "^3.3.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.6",
"enzyme-to-json": "^3.6.1",
"flow-copy-source": "^2.0.9",
"is-html": "^2.0.0",
"jest": "^26.6.3",
"jest-enzyme": "^7.1.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-native": "^0.64.0",
"react-native-webview": "^11.3.2"
}
}