-
-
Notifications
You must be signed in to change notification settings - Fork 647
/
package.json
124 lines (124 loc) · 3.67 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
119
120
121
122
123
124
{
"name": "react-native-iap",
"version": "12.15.6",
"description": "React Native In App Purchase Module.",
"repository": "https://github.com/hyochan/react-native-iap",
"author": "hyochan <hyochan.dev@gmail.com> (https://github.com/hyochan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hyochan/react-native-iap/issues"
},
"homepage": "https://github.com/hyochan/react-native-iap#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"contributors": [
{
"name": "hyochan",
"url": "https://github.com/hyochan"
},
{
"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/src/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"RNIap.podspec",
"plugin/build",
"app.plugin.js",
"!android/.gradle",
"!android/.idea",
"!android/build",
"!android/src/testPlay",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"prepare": "bob build && npm run clean:plugin && npm run build:plugin",
"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}\"",
"lint:swift": "swiftlint lint --fix --format ios/*.swift --config .swiftlint.yml",
"lint:kotlin": "ktlint --format",
"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",
"build:plugin": "tsc --build plugin",
"clean:plugin": "expo-module clean plugin",
"lint:plugin": "eslint plugin/src/*"
},
"devDependencies": {
"@babel/eslint-parser": "7.21.8",
"@firmnav/eslint-github-actions-formatter": "^1.0.1",
"@jeremybarbet/apple-api-types": "1.4.0",
"@jeremybarbet/google-api-types": "1.4.0",
"@react-native-community/eslint-config": "3.2.0",
"@release-it/conventional-changelog": "5.1.1",
"@types/jest": "29.5.1",
"@types/react": "*",
"@typescript-eslint/eslint-plugin": "5.57.1",
"@typescript-eslint/parser": "5.57.1",
"babel-jest": "29.5.0",
"eslint": "8.43.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-jest": "27.2.2",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"expo": "^51.0.14",
"expo-module-scripts": "^3.0.7",
"jest": "29.5.0",
"monolinter": "1.0.4",
"pod-install": "0.1.38",
"prettier": "2.8.8",
"react": "18.2.0",
"react-native": "*",
"react-native-builder-bob": "0.20.4",
"release-it": "15.10.3",
"ts-jest": "29.1.0",
"typedoc": "^0.24.0",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "5.0.4"
},
"peerDependencies": {
"expo": ">=47.0.0",
"react": ">=16.13.1",
"react-native": ">=0.65.1"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
}
}