-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
51 lines (51 loc) · 1.39 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
{
"name": "react-native-keyboard-area",
"version": "1.0.6",
"description": "React Native component that provides a View that always match the height of the keyboard",
"author": "Thomas Gazzoni",
"bugs": {
"url": "https://github.com/thomasgazzoni/react-native-keyboard-area/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:thomasgazzoni/react-native-keyboard-area.git"
},
"homepage": "https://github.com/thomasgazzoni/react-native-keyboard-area",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"react-native",
"keyboard",
"keyboard-area",
"keyboard-avoid-view"
],
"scripts": {
"test": "echo ignore",
"build": "tsc",
"lint": "eslint --cache --ext .js,.jsx,.ts,.tsx ./src",
"semantic-release": "semantic-release",
"prepublish": "yarn build"
},
"dependencies": {
"@types/react-native": "0.62.16"
},
"devDependencies": {
"@react-native-community/eslint-config": "2.0.0",
"@typescript-eslint/eslint-plugin": "3.5.0",
"@typescript-eslint/parser": "3.5.0",
"cz-conventional-changelog": "3.2.0",
"eslint": "7.3.1",
"semantic-release": "17.2.3",
"typescript": "3.9.6"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.59.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}