forked from naoufal/react-native-payments
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.33 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.33 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
{
"name": "@exodus/react-native-payments",
"version": "2.1.1",
"main": "lib/js/index.js",
"types": "lib/js/index.d.ts",
"scripts": {
"build": "rm -rf lib && mkdir -p lib && cp -r src/ios lib/ios && tsc -p tsconfig.build.json ",
"clean": "tsc --build --clean",
"test": "jest",
"precommit": "lint-staged",
"prepublishOnly": "yarn build"
},
"files": [
"lib",
"android",
"!**/__tests__/**"
],
"repository": "https://github.com/naoufal/react-native-payments",
"keywords": [
"react",
"react-native",
"apple-pay",
"payments"
],
"author": "Naoufal Kadhom",
"license": "MIT",
"dependencies": {
"@exodus/crypto": "^1.0.0-rc.2",
"es6-error": "^4.0.2"
},
"devDependencies": {
"@types/react": "^17.0.0",
"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-native": "0.78.3",
"react-test-renderer": "16.0.0-alpha.12",
"typescript": "^5.7.0"
},
"peerDependencies": {
"react": ">=15",
"react-native": ">=0.41"
},
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
"/examples/",
"lib/js/__tests__"
]
},
"lint-staged": {
"*.js": [
"prettier --single-quote --write",
"git add"
]
}
}