This repository has been archived by the owner on Apr 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "react-native-button-toggle-group",
"version": "1.1.2",
"description": "An animated button toggle group for string selection",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "eslint --fix ./*.{js,ts}",
"lint": "eslint ./*.{js,ts}",
"release": "standard-version",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crutchcorn/react-native-button-toggle-group.git"
},
"author": "Corbin Crutchley <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/crutchcorn/react-native-button-toggle-group/issues"
},
"homepage": "https://github.com/crutchcorn/react-native-button-toggle-group#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"husky": "^7.0.0",
"lint-staged": "^11.2.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"standard-version": "^9.3.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@react-native-masked-view/masked-view": "^0.2.6",
"react-native-paper": "^4.9.2"
},
"keywords": [
"react-native",
"react native",
"button-toggle-group",
"button toggle group",
"material-design",
"material design"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npm run format"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}