-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.24 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
{
"name": "@sishuguojixuefu/react-native-textinput",
"version": "0.0.1",
"description": "Fix react-native TextInput (copy/paste) bug inside ViewPagerAndroid",
"main": "index.tsx",
"scripts": {
"postversion": "git push --tags && git push && npm publish",
"update": "yarn sishu && yarn sishuguojixuefu && yarn veronica",
"sishu": "yarn upgrade -S @sishu --latest",
"sishuguojixuefu": "yarn upgrade -S @sishuguojixuefu --latest",
"veronica": "yarn upgrade -S @veronica --latest"
},
"homepage": "https://github.com/sishuguojixuefu/react-native-textinput",
"repository": {
"type": "git",
"url": "https://github.com/sishuguojixuefu/react-native-textinput.git"
},
"author": {
"name": "杨俊宁",
"url": "https://youngjuning.js.org",
"email": "[email protected]"
},
"devDependencies": {
"@sishuguojixuefu/eslint-config": "^0.5.8",
"@types/react": "^16.9.13",
"@types/react-native": "^0.60.26",
"husky": "^3.1.0",
"lint-staged": "^9.5.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"**/*.{md,json}": [
"prettier --write",
"git add"
]
}
}