forked from jlyman/react-native-rating-requestor
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.28 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
{
"name": "rn-rating-requester",
"version": "3.2.0",
"description": "A React Native component to prompt users for a rating after positive interactions",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prep-example": "cd example && yarn && cd ../ && mkdir -p example/node_modules/rn-rating-requester/ && tar -c --exclude .git --exclude example . | tar -x -C example/node_modules/rn-rating-requester/ && cd example && react-native link rn-rating-requester",
"example-ios": "npm run prep-example; cd example; react-native run-ios",
"example-android": "npm run prep-example; cd example; react-native run-android"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rizzomichaelg/rn-rating-requester.git"
},
"keywords": [
"react",
"react-component",
"react-native",
"ios",
"android",
"ratings",
"reviews"
],
"author": "Mike Rizzo",
"license": "MIT",
"bugs": {
"url": "https://github.com/rizzomichaelg/rn-rating-requester/issues"
},
"homepage": "https://github.com/rizzomichaelg/rn-rating-requester#readme",
"peerDependencies": {
"react-native": ">= 0.20.0"
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.10",
"lodash": "^4.17.10"
}
}