-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.68 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.68 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@fivecar/react-native-keyboard-avoiding-scrollview",
"version": "2.2.0",
"description": "React Native ScrollView extension that prevents inputs from being covered by the keyboard",
"keywords": [
"react native",
"keyboard",
"keyboard avoiding",
"keyboard aware",
"scrollview",
"keyboardavoidingview"
],
"homepage": "https://github.com/fivecar/react-native-keyboard-avoiding-scrollview#readme",
"bugs": {
"url": "https://github.com/fivecar/react-native-keyboard-avoiding-scrollview/issues"
},
"license": "MIT",
"author": "Philip Su <39933441+fivecar@users.noreply.github.com>",
"files": [
"dist/"
],
"main": "dist/index.js",
"react-native": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/fivecar/react-native-keyboard-avoiding-scrollview.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit --pretty",
"lint": "eslint --ext .js,.ts,.tsx --cache .",
"test": "run-p --silent --print-label typecheck lint",
"bootstrap": "yarn --cwd example && yarn",
"build": "rm -rf dist && yarn tsc --pretty --declaration --outDir dist",
"example": "yarn --cwd example",
"prepublishOnly": "yarn build",
"release": "release-it"
},
"release-it": {
"git": {
"commitArgs": "--no-verify",
"pushArgs": "--no-verify"
}
},
"prettier": {
"bracketSpacing": false,
"jsxBracketSameLine": true,
"printWidth": 80,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e",
"pre-push": "yarn test"
}
},
"lint-staged": {
"**/*.{js,ts,tsx,json,yml,yaml}": [
"prettier --write",
"git add"
],
"**/*.{js,ts,tsx}": [
"eslint --ext .js,.ts,.tsx --cache --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/react": "^19.0.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"husky": "^3.0.1",
"lint-staged": "^9.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"react-native": "^0.78.0",
"release-it": "^18.1.2",
"typescript": "^5.8.2",
"utility-types": "^3.7.0"
}
}