-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.2 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "react-native-stripe-identity",
"version": "0.0.1",
"description": "🆔 React Native implementation for Stripe.js Identity",
"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-identity.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",
"identity",
"stripe-identity",
"security",
"identity-verification",
"id",
"passport",
"driving-license",
"elements",
"react-native-expo",
"expo",
"webview",
"types",
"flow",
"typescript"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/a-tokyo/react-native-stripe-identity/issues"
},
"homepage": "https://github.com/a-tokyo/react-native-stripe-identity#readme",
"peerDependencies": {
"react-native": "*",
"react-native-webview": "*"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.1",
"@babel/plugin-transform-react-jsx": "^7.12.1",
"@babel/plugin-transform-regenerator": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-flow": "^7.12.1",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/react-hooks": "^3.4.2",
"@testing-library/user-event": "^12.1.9",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.0",
"babel-plugin-lodash": "^3.3.4",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-flowtype": "^5.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"flow-copy-source": "^2.0.9",
"husky": "^4.3.0",
"jest": "^26.6.0",
"jest-enzyme": "^7.1.2",
"lint-staged": "^10.4.2",
"prettier": "2.1.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-native": "^0.63.3",
"react-native-stripe-identity": "^0.0.1",
"react-native-webview": "^10.9.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"contributors": [
{
"name": "Ahmed Tarek",
"email": "[email protected]",
"url": "https://github.com/A-Tokyo"
}
]
}