-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
executable file
·97 lines (97 loc) · 2.87 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
{
"name": "react-native-in-app-review",
"version": "4.3.2",
"description": "react native in app review, to rate on Play store, App Store, Generally, the in-app review flow (see figure 1 for play store, figure 2 for ios) can be triggered at any time throughout the user journey of your app. During the flow, the user has the ability to rate your app using the 1 to 5 star system and to add an optional comment for play store only. Once submitted, the review is sent to the Play Store or App store and eventually displayed.",
"main": "index.js",
"scripts": {
"test:package": "jest --ci --coverage __tests__/InAppReview-test.js InAppReviewWithoutNativeModules-test.js",
"test:example": "cd Example && jest --ci --coverage",
"test": "npm run test:package && npm run test:example",
"test:ci": "jest --ci --coverage",
"lint": "eslint . --fix"
},
"keywords": [
"react-native",
"review",
"app-review",
"in-app-review",
"react-native-in-app-review",
"store-kit",
"android",
"ios",
"app store",
"play store",
"app gallery",
"App Gallery",
"rate your app",
"review is sent to the Play Store",
"review is sent to the App Store",
"review is sent to the App Gallery",
"rating",
"view",
"react-component",
"react-native-component",
"in-app-comment",
"in app comment"
],
"files": [
"android/src/main/AndroidManifest.xml",
"android/src/main/java/",
"android/build.gradle",
"android/",
"ios/",
"!ios/build/",
"react-native-in-app-review.podspec",
"README.md",
"index.d.ts",
"index.js",
"__tests__"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MinaSamir11/react-native-in-app-review.git"
},
"author": "Mina Samir Shafik <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MinaSamir11/react-native-in-app-review/issues"
},
"homepage": "https://github.com/MinaSamir11/react-native-in-app-review#readme",
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^1.1.0",
"@testing-library/react-hooks": "^5.0.0",
"babel-jest": "^25.1.0",
"coveralls": "^3.1.0",
"eslint": "^6.5.1",
"eslint-plugin-unused-imports": "^1.0.1",
"husky": "^4.3.8",
"jest": "^25.1.0",
"lint-staged": "^10.5.3",
"metro-react-native-babel-preset": "^0.59.0",
"react": "16.13.1",
"react-native": "0.63.4",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/Example/"
],
"setupFilesAfterEnv": [
"<rootDir>/jest.setup.js"
]
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged -v && npm run test:ci"
}
}
}