-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
executable file
·58 lines (58 loc) · 1.43 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
{
"name": "react-native-cloudipsp",
"version": "1.0.0",
"description": "Library for accepting payments directly from android application's clients.",
"main": "dist/commonjs/index.js",
"module": "dist/module/index.js",
"react-native": "src/index.ts",
"types": "dist/typescript/index.d.ts",
"scripts": {
"build": "bob build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloudipsp/react-native-cloudipsp.git"
},
"keywords": [
"react-component",
"react-native",
"ios",
"android",
"payment"
],
"devDependencies": {
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/react": "^18.0.24",
"eslint": "^8.19.0",
"jest": "^29.2.1",
"react": "18.2.0",
"react-native": "0.71.4",
"react-native-webview": "11.26.1",
"typescript": "4.9.5",
"react-native-builder-bob": "0.20.4"
},
"peerDependencies": {
"react-native": ">=0.61.5",
"react-native-webview": ">=8.0.0"
},
"author": "Maxim Kozenko",
"license": "The MIT License (MIT)",
"bugs": {
"url": "https://github.com/cloudipsp/react-native-cloudipsp/issues"
},
"homepage": "https://cloudipsp.com",
"jest": {
"preset": "react-native"
},
"react-native-builder-bob": {
"source": "src",
"output": "dist",
"targets": [
"typescript",
"commonjs",
"module"
]
}
}