-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 1.79 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
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
{
"name": "@grewer/react-native-vconsole",
"version": "0.1.3",
"description": "vconsole for react native",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"postversion": "git push --tags && git push && npm publish"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"files": [
"build",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/Grewer/react-native-vconsole"
},
"keywords": [
"vconsole;",
"debugger;",
"console;",
"react-native;"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Grewer/react-native-vconsole"
},
"homepage": "https://github.com/Grewer/react-native-vconsole",
"peerDependencies": {
"react": "*",
"react-native": ">=0.50.0"
},
"devDependencies": {
"@sishuguojixuefu/eslint-config": "^0.8.4",
"@types/react": "^17.0.4",
"@types/react-native": "^0.64.4",
"husky": "^3.1.0",
"lint-staged": "^9.5.0"
},
"eslintConfig": {
"root": true,
"extends": [
"@sishuguojixuefu"
],
"env": {
"react-native/react-native": true
},
"rules": {
"no-restricted-syntax": 0,
"no-cond-assign": 0,
"guard-for-in": 0,
"no-param-reassign": 0,
"no-unused-vars": 0
}
},
"eslintIgnore": [
"!.eslintrc.js",
"!.prettierrc.js"
],
"prettier": "@sishuguojixuefu/eslint-config/.prettierrc.js",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"**/*.{md,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@sishuguojixuefu/react-native-json-tree": "^1.2.5",
"dayjs": "^1.10.4"
}
}