-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.8 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.8 KB
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
{
"name": "@freakycoder/react-native-button",
"version": "1.0.4",
"description": "Fully customizable, Gradient, Outline and Solid Button for React Native.",
"keywords": [
"google",
"material-design",
"material-design-2",
"google-play",
"gradient",
"button",
"FreakyCoder",
"freakycoder",
"kuray",
"Kuray",
"react",
"react-native",
"javascript",
"ui-lib",
"rn"
],
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-button/issues",
"main": "./build/dist/index.js",
"repository": "git@github.com:WrathChaos/react-native-button.git",
"author": "Kuray (FreakyCoder) <kurayogun@gmail.com>",
"license": "MIT",
"scripts": {
"build": "cd lib && tsc && cp ../package.json ../build/dist/ && Echo Build completed!",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"peerDependencies": {
"react-native-androw": ">= 0.0.31",
"react-native-dynamic-vector-icons": ">= x.x.x",
"react-native-linear-gradient": ">= 2.5.x",
"react-native-vector-icons": ">= 6.x.x"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.0",
"@types/react": "^19.0.8",
"@types/react-native": "^0.72.0",
"eslint": "^9.2.0",
"eslint-config-airbnb": "^19.0.0",
"husky": "^9.0.1",
"lint-staged": "^16.0.0",
"prettier": "^3.0.1",
"react-native-typescript-transformer": "^1.2.13",
"typescript": "^5.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/*.{js,jsx,ts,tsx}": [
"npx prettier --write",
"eslint src/*.js --fix-dry-run"
]
}
}