-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.06 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
{
"name": "react-native-rating-modal",
"version": "0.0.2",
"description": "Rating modal for react-native",
"scripts": {
"build": "rm -rf ./dist/** && tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/pankod/react-native-rating-modal"
},
"bugs": {
"url": "https://github.com/pankod/react-native-rating-modal/issues"
},
"homepage": "https://github.com/pankod/react-native-rating-modal",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"keywords": [
"react",
"react-native",
"ratings"
],
"author": "Pankod",
"contributors": [
"Pankod"
],
"license": "MIT",
"dependencies": {
"lodash.times": "^4.3.2",
"react-native-ratings": "^4.1.0"
},
"devDependencies": {
"@types/react": "^16.8.5",
"@types/react-native": "^0.57.38",
"react": "^16.8.3",
"react-native": "^0.58.5",
"tslint": "^5.13.0",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-ratings": "^4.1.0"
}
}