-
Notifications
You must be signed in to change notification settings - Fork 61
/
package.json
40 lines (40 loc) · 1.03 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
{
"name": "react-native-wheely",
"version": "0.6.0",
"description": "An all JavaScript, highly customizable wheel picker for react-native.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/erksch/react-native-wheely",
"author": "erksch (Erik Ziegler)",
"license": "MIT",
"keywords": [
"react",
"react-native",
"wheel-picker",
"wheel",
"picker",
"wheely"
],
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --skipLibCheck",
"lint": "eslint ./src --ext .js,.ts,.tsx",
"prepare": "yarn build"
},
"devDependencies": {
"@types/react": "^17.0.40",
"@types/react-native": "^0.67.3",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-react-native": "^4.0.0",
"prettier": "^2.6.0",
"react": "^17.0.2",
"react-native": "^0.67.3",
"typescript": "^4.6.2"
}
}