-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "react-native-payments",
"version": "1.1.2",
"description": "Wrapper for react-native iOS in-app-purchases and Android in-app-billing.",
"main": "index.js",
"scripts": {
"tsc": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmanasadi/react-native-payments.git"
},
"keywords": [
"react-native",
"android",
"ios",
"in-app-purchases",
"in-app-billing",
"amazon-iap"
],
"author": "Bahman Asadi",
"license": "MIT",
"peerDependencies": {
"react-native": "^0.55.4"
},
"devDependencies": {
"@types/react-native": "^0.61.16",
"husky": "4.2.3",
"prettier": "^1.19.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.7.5"
},
"bugs": {
"url": "https://github.com/bahmanasadi/react-native-payments/issues"
},
"homepage": "https://github.com/bahmanasadi/react-native-payments#readme",
"dependencies": {},
"lint-staged": {
"*.ts*": [
"prettier --debug-check --print-width=85",
"tslint --fix"
]
}
}