forked from naoufal/react-native-payments
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.25 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
{
"name": "react-native-payments",
"version": "0.3.1",
"scripts": {
"precommit": "lint-staged",
"run:packager": "cd examples/native && yarn run:packager",
"run:ios": "cd examples/native && yarn run:ios",
"run:web": "cd examples/web && yarn run:web",
"run:demo": "cd examples/native && yarn run:demo",
"test": "jest",
"postinstall": "jetify"
},
"repository": "https://github.com/naoufal/react-native-payments",
"keywords": [
"react",
"react-native",
"apple-pay",
"stripe",
"braintree",
"payments",
"worldpay"
],
"author": "Naoufal Kadhom",
"license": "MIT",
"dependencies": {
"es6-error": "^4.0.2",
"uuid": "^3.1.0",
"validator": "^7.0.0"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-preset-react-native": "2.0.0",
"husky": "^0.14.1",
"jest": "20.0.4",
"lint-staged": "^4.0.0",
"prettier": "^1.4.4",
"react-test-renderer": "16.0.0-alpha.12"
},
"peerDependencies": {
"react": "^16.0.0",
"react-native": "^0.49.5"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/",
"lib/js/__tests__"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"git add"
]
}
}