Skip to content

Commit 5bd1f9f

Browse files
committed
change package name to rn-checkout
1 parent dc53661 commit 5bd1f9f

File tree

2 files changed

+54
-50
lines changed

2 files changed

+54
-50
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,3 +180,7 @@ The tokenization is triggered when the SubmitButton is pressed. The process of g
180180
| cardTokenized | function | Triggered after a card is tokenized. Here you will get the card token alongside general card information |
181181
| cardTokenizationFailed | function | Triggered after the card tokenization fails. |
182182
| cardBinChanged | function | Triggered when the user inputs or changes the first 8 digits of a card. |
183+
184+
185+
## Improvements based on Checkout.com React Native SDK
186+
Checkout.com [React Native SDK]("https://github.com/checkout/frames-react-native")

package.json

Lines changed: 50 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,52 @@
11
{
2-
"name": "frames-react-native",
3-
"version": "1.1.8",
4-
"description": "Frames React Native",
5-
"main": "dist/index.js",
6-
"scripts": {
7-
"test": "jest --coverage",
8-
"test:watch": "jest --watch --coverage=false",
9-
"build": "tsc"
10-
},
11-
"dependencies": {
12-
"creditcards": "^4.2.0",
13-
"creditcards-types": "^3.2.0",
14-
"node-fetch": "^2.6.7"
15-
},
16-
"keywords": [],
17-
"author": "",
18-
"license": "MIT",
19-
"devDependencies": {
20-
"@babel/cli": "^7.0.0",
21-
"@babel/core": "^7.12.16",
22-
"@babel/preset-react": "^7.12.13",
23-
"@testing-library/jest-dom": "^5.11.9",
24-
"@testing-library/jest-native": "^3.3.0",
25-
"@testing-library/react-native": "^7.1.0",
26-
"@types/jest": "^26.0.20",
27-
"@types/node-fetch": "^2.5.8",
28-
"@types/react": "^16.14.4",
29-
"@types/react-native": "^0.63.49",
30-
"@types/react-test-renderer": "^16.9.5",
31-
"@types/uuid": "^8.3.0",
32-
"babel-preset-expo": "~8.1.0",
33-
"jest": "^26.6.3",
34-
"jest-expo": "^38.0.2",
35-
"react": "~16.9.0",
36-
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
37-
"react-native-typescript-transformer": "^1.2.13",
38-
"ts-jest": "^26.5.1",
39-
"typescript": "~3.8.3"
40-
},
41-
"jest": {
42-
"preset": "react-native",
43-
"moduleFileExtensions": [
44-
"ts",
45-
"tsx",
46-
"js"
47-
],
48-
"coverageReporters": [
49-
"lcov"
50-
]
51-
}
2+
"name": "rn-checkout",
3+
"version": "1.1.8",
4+
"description": "Frames React Native",
5+
"main": "dist/index.js",
6+
"scripts": {
7+
"test": "jest --coverage",
8+
"test:watch": "jest --watch --coverage=false",
9+
"build": "tsc"
10+
},
11+
"dependencies": {
12+
"creditcards": "^4.2.0",
13+
"creditcards-types": "^3.2.0",
14+
"node-fetch": "^2.6.7"
15+
},
16+
"keywords": [],
17+
"author": "",
18+
"license": "MIT",
19+
"devDependencies": {
20+
"@babel/cli": "^7.0.0",
21+
"@babel/core": "^7.12.16",
22+
"@babel/preset-react": "^7.12.13",
23+
"@testing-library/jest-dom": "^5.11.9",
24+
"@testing-library/jest-native": "^3.3.0",
25+
"@testing-library/react-native": "^7.1.0",
26+
"@types/jest": "^26.0.20",
27+
"@types/node-fetch": "^2.5.8",
28+
"@types/react": "^16.14.4",
29+
"@types/react-native": "^0.63.49",
30+
"@types/react-test-renderer": "^16.9.5",
31+
"@types/uuid": "^8.3.0",
32+
"babel-preset-expo": "~8.1.0",
33+
"jest": "^26.6.3",
34+
"jest-expo": "^38.0.2",
35+
"react": "~16.9.0",
36+
"react-native": "https://github.com/expo/react-native/archive/sdk-37.0.1.tar.gz",
37+
"react-native-typescript-transformer": "^1.2.13",
38+
"ts-jest": "^26.5.1",
39+
"typescript": "~3.8.3"
40+
},
41+
"jest": {
42+
"preset": "react-native",
43+
"moduleFileExtensions": [
44+
"ts",
45+
"tsx",
46+
"js"
47+
],
48+
"coverageReporters": [
49+
"lcov"
50+
]
51+
}
5252
}

0 commit comments

Comments
 (0)