-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.52 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.52 KB
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
83
84
85
86
87
88
89
{
"name": "flutterwave-react-native",
"version": "1.0.6",
"description": "The official React-Native library for Flutterwave for business v2 and v3 APIs.",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"postbuild": "npm run copy-files",
"lint": "eslint \"src/**/*.{ts, tsx}\"",
"format": "prettier-standard --format",
"test": "jest --coverage",
"copy-files": "copyfiles -u 1 src/assets/*.gif src/assets/*.png src/assets dist",
"commit": "npx git-cz",
"release": "semantic-release",
"set-example": "npm run build && node setExample.js"
},
"files": [
"dist"
],
"keywords": [
"Flutterwave",
"RavePay",
"React-native-payment",
"Payment",
"Payments"
],
"author": "Flutterwave Developers",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.6.3",
"@react-native-community/eslint-config": "^1.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^24.9.1",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.2",
"@types/react-test-renderer": "^16.9.2",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"abortcontroller-polyfill": "^1.4.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"babel-plugin-module-resolver": "3.1.3",
"babel-preset-react-native": "^4.0.1",
"commitizen": "^4.0.4",
"copyfiles": "^2.2.0",
"cz-conventional-changelog": "^3.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^3.0.3",
"log-symbols": "^4.0.0",
"metro-react-native-babel-preset": "^0.56.0",
"mockdate": "^3.0.2",
"ncp": "^2.0.0",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"react": "^16.13.1",
"react-native": "^0.62.2",
"react-test-renderer": "16.8.6",
"semantic-release": "^17.0.8",
"ts-jest": "^24.2.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {
"prop-types": "^15.6.2",
"react-native-webview": ">=6.0.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Flutterwave/flutterwave-react-native.git"
},
"bugs": {
"url": "https://github.com/Flutterwave/flutterwave-react-native/issues"
},
"homepage": "https://github.com/Flutterwave/flutterwave-react-native#readme"
}