-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "react-native-ratings",
"version": "8.1.0",
"description": "The standard Ratings component for React Native",
"main": "./dist/index.js",
"types": "./dist/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 --ext .ts --ext .tsx src/",
"lint-demo": "eslint --ext .ts --ext .tsx demo/src/",
"lint-all": "yarn lint && yarn lint-demo",
"clean-install": "rm -rf node_modules && yarn",
"prepare": "husky install",
"build": "tsc -p tsconfig.json",
"copy-files": "cp -R ./src/images ./dist/images/",
"postbuild": "yarn run copy-files"
},
"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"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^5.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.64",
"typescript": "^4.2.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
}
}