-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
81 lines (81 loc) · 2.02 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
{
"name": "react-native-portalize",
"version": "1.0.7",
"description": "Render anything on top of the rest",
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rm -rf ./lib/* && yarn lint && tsc",
"prepare": "yarn build",
"lint": "eslint 'src/**/*.ts?(x)' && prettier --list-different \"**/*.{json,md,js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{json,md,js,jsx,ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremybarbet/react-native-portalize.git"
},
"keywords": [
"portal",
"react-native",
"react",
"native",
"ios",
"android",
"above",
"top"
],
"author": "Jérémy Barbet",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeremybarbet/react-native-portalize/issues"
},
"homepage": "https://github.com/jeremybarbet/react-native-portalize#readme",
"lint-staged": {
"*.{ts,tsx,js,jsx,json,md}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": 100,
"arrowParens": "avoid",
"semi": true
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/react": "16.9.34",
"@types/react-native": "0.62.2",
"@typescript-eslint/eslint-plugin": "2.29.0",
"@typescript-eslint/parser": "2.29.0",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-react": "7.19.0",
"eslint-plugin-react-native": "3.8.1",
"husky": "4.2.5",
"lint-staged": "10.1.3",
"prettier": "2.0.4",
"react": "16.13.1",
"react-native": "0.62.2",
"typescript": "3.8.3"
},
"peerDependencies": {
"react": "> 15.0.0",
"react-native": "> 0.50.0"
}
}