forked from hyochan/react-native-iap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.01 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
{
"name": "react-native-iap",
"version": "7.5.0",
"description": "React Native In App Purchase Module.",
"main": "index.js",
"types": "index.d.ts",
"postinstall": "dooboolab-welcome postinstall",
"scripts": {
"build": "tsc && flowgen index.d.ts -o index.js.flow",
"flow": "flow",
"lint": "eslint src --ext .ts,.tsx",
"lint:android": "cd android && ./gradlew goJF",
"test": "jest",
"test:flow": "flow",
"test:typescript": "tsc --noEmit",
"tsc:sync": "npx typesync",
"tsc": "tsc",
"validate": "yarn lint && yarn test:typescript && yarn test:flow && yarn test && yarn monolinter"
},
"repository": {
"type": "git",
"url": "https://github.com/dooboolab/react-native-iap"
},
"keywords": [
"react-native",
"in app purchase",
"in-app-purchase",
"billing"
],
"author": "dooboolab",
"contributors": [
{
"name": "Andres Aguilar",
"url": "https://github.com/andresesfm"
}
],
"license": "MIT",
"peerDependencies": {
"react": ">=16.13.1",
"react-native": ">=0.54"
},
"dependencies": {
"dooboolab-welcome": "1.3.2"
},
"devDependencies": {
"@babel/core": "7.15.5",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-private-methods": "7.14.5",
"@babel/preset-env": "7.15.6",
"@babel/preset-react": "7.14.5",
"@babel/preset-typescript": "7.15.0",
"@dooboo/eslint-config": "0.8.5",
"@testing-library/jest-native": "4.0.2",
"@testing-library/react-native": "7.2.0",
"@types/eslint": "7.28.0",
"@types/jest": "27.0.1",
"@types/react": "17.0.21",
"@types/react-native": "0.65.0",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"babel-jest": "27.2.0",
"eslint": "7.32.0",
"flow-bin": "0.160.0",
"flowgen": "1.14.1",
"jest": "27.2.0",
"metro-react-native-babel-preset": "0.66.2",
"monolinter": "1.0.4",
"prettier": "2.4.1",
"react-native": "0.64.2",
"ts-jest": "27.0.5",
"typescript": "4.4.3"
}
}