forked from suhartyo/react-native-star-rating
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "react-native-star-rating",
"version": "1.1.0",
"description": "A React Native component for generating and displaying interactive star ratings",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js",
"test": "jest",
"pre-publish": "npm run lint && npm run test",
"clean-modules": "rm -rf node_modules"
},
"keywords": [
"react",
"native",
"react native",
"star",
"stars",
"rating",
"ratings",
"review",
"reviews",
"react-component",
"react-native",
"ios",
"android"
],
"author": "Derrick Chie <[email protected]> (https://github.com/djchie)",
"license": "ISC",
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/ExampleApp/"
],
"testPathIgnorePatterns": [
"<rootDir>/ExampleApp/"
]
},
"dependencies": {
"prop-types": "^15.5.10",
"react-native-animatable": "^1.2.4",
"react-native-button": "^2.3.0",
"react-native-vector-icons": "^7.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/djchie/react-native-star-rating.git"
},
"bugs": {
"url": "https://github.com/djchie/react-native-star-rating/issues"
},
"homepage": "https://github.com/djchie/react-native-star-rating",
"devDependencies": {
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"jest": "^23.1.0",
"react": "16.3.1",
"react-native": "0.55.4",
"react-test-renderer": "16.3.1"
}
}