forked from z-dev/react-native-checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.34 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
{
"name": "react-native-checkout",
"version": "0.0.13",
"license": "MIT",
"description": "Cross Platform React Native component. Supports selecting payment method, adding cards manually and using the camera.",
"keywords": [
"react-native",
"react",
"checkout",
"payment",
"stripe",
"native",
"form"
],
"private": false,
"main": "src/index.js",
"repository" : {
"type" : "git",
"url" : "https://github.com/z-dev/react-native-checkout"
},
"dependencies": {
"lodash": "^4.14.2",
"payment": "^2.2.1",
"react-native-awesome-card-io": "^0.6.1",
"react-native-keyboard-spacer": "^0.3.0",
"react-native-keyboard-aware-scroll-view": "^0.2.7",
"string": "^3.3.3"
},
"peerDependencies": {
"react": "~15.4.1",
"react-native": "^0.42.3"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-preset-react-native": "^1.5.3",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.8.0",
"eslint-plugin-react-native": "^2.3.1",
"estraverse-fb": "^1.3.1",
"nodemon": "^1.9.1",
"react-native-cli": "^2.0.1"
},
"scripts": {
"lint": "eslint src --ext=js --ext=jsx",
"lint:watch": "nodemon --exec \"yarn lint\"",
"ci": "yarn lint"
}
}