forked from hyochan/react-native-iap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.29 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
{
"name": "react-native-iap",
"version": "12.2.0",
"description": "React Native In App Purchase Module.",
"repository": "https://github.com/dooboolab/react-native-iap",
"author": "dooboolab <support@dooboolab.com> (https://github.com/dooboolab)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dooboolab/react-native-iap/issues"
},
"homepage": "https://github.com/dooboolab/react-native-iap#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"contributors": [
{
"name": "Andres Aguilar",
"url": "https://github.com/andresesfm"
},
{
"name": "Jérémy Barbet",
"url": "https://github.com/jeremybarbet"
}
],
"keywords": [
"react-native",
"react-native-iap",
"IAP",
"in app purchase",
"in-app-purchase",
"Billing",
"iOS",
"Android",
"Amazon",
"Play"
],
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"RNIap.podspec",
"!android/.gradle",
"!android/.idea",
"!android/build",
"!android/src/testPlay",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd IapExample",
"test": "jest",
"lint": "yarn lint:tsc && yarn lint:eslint && yarn lint:prettier",
"lint:tsc": "tsc -p tsconfig.json --noEmit --skipLibCheck",
"lint:eslint": "eslint --fix '**/*.{ts,tsx}'",
"lint:ci": "yarn lint:tsc && yarn lint:eslint -f ./node_modules/@firmnav/eslint-github-actions-formatter/dist/formatter.js && yarn lint:prettier",
"lint:prettier": "prettier --write \"**/*.{md,js,jsx,ts,tsx}\"",
"format": "git ls-files -m | xargs yarn prettier --write --ignore-unknown --no-error-on-unmatched-pattern",
"bootstrap": "yarn example && yarn && yarn example pods",
"gen:doc": "typedoc"
},
"devDependencies": {
"@babel/eslint-parser": "7.18.9",
"@firmnav/eslint-github-actions-formatter": "1.0.1",
"@jeremybarbet/apple-api-types": "1.3.5",
"@jeremybarbet/google-api-types": "1.3.5",
"@react-native-community/eslint-config": "3.1.0",
"@release-it/conventional-changelog": "5.0.0",
"@testing-library/jest-native": "4.0.5",
"@testing-library/react-native": "11.0.0",
"@types/jest": "28.1.6",
"@types/react": "~17.0.47",
"@types/react-native": "0.68.2",
"@typescript-eslint/eslint-plugin": "5.32.0",
"@typescript-eslint/parser": "5.32.0",
"babel-jest": "28.1.3",
"eslint": "8.20.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "26.8.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"jest": "28.1.3",
"monolinter": "1.0.4",
"pod-install": "0.1.38",
"prettier": "2.7.1",
"react": "17.0.2",
"react-native": "0.68.2",
"react-native-builder-bob": "0.18.3",
"release-it": "15.2.0",
"ts-jest": "28.0.7",
"typedoc": "^0.23.14",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "4.7.4"
},
"resolutions": {
"@types/react": "17.0.21"
},
"peerDependencies": {
"react": ">=16.13.1",
"react-native": ">=0.65.1"
}
}