forked from Monte9/react-native-ratings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 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
{
"name": "react-native-ratings",
"version": "7.2.0",
"description": "The standard Ratings component for React Native",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Monte9/react-native-ratings.git"
},
"keywords": [
"react-native",
"reactjs",
"reactnative",
"gestures",
"ios",
"stars",
"android",
"ratings",
"ui-components"
],
"scripts": {
"lint": "eslint src/",
"clean-install": "rm -rf node_modules && yarn"
},
"author": "Monte Thakkar",
"license": "MIT",
"bugs": {
"url": "https://github.com/Monte9/react-native-ratings/issues"
},
"homepage": "https://github.com/Monte9/react-native-ratings#readme",
"dependencies": {
"lodash": "^4.17.15",
"prop-types": "^15.7.2"
},
"devDependencies": {
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-native": "^0.61.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}