-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
77 lines (77 loc) · 1.87 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
{
"name": "react-native-dialog",
"version": "9.3.0",
"description": "A flexible react-native dialog",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Mazzarolo Matteo",
"license": "MIT",
"homepage": "https://github.com/mmazzarolo/react-native-dialog",
"repository": {
"type": "git",
"url": "https://github.com/mmazzarolo/react-native-dialog"
},
"keywords": [
"react-native",
"dialog",
"alert",
"modal",
"button",
"input",
"switch"
],
"files": [
"lib/"
],
"scripts": {
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "npm run lint --fix",
"test": "npm run lint",
"prettier": "prettier --ignore-path .gitignore --no-config --write 'src/*.ts?(x)'",
"build": "tsc"
},
"peerDependencies": {
"react-native": ">=0.63.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/react": "^17.0.3",
"@types/react-native": "^0.64.2",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"semantic-release": "^17.1.2",
"typescript": "^4.2.4"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:fix"
],
"*.md": [
"prettier --write"
]
}
}