-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
126 lines (126 loc) · 3.19 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "react-native-customizable-toast",
"version": "0.2.1",
"description": "yet another toast library based on reanimated 2 layout animations",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-customizable-toast.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint . --fix",
"prepare": "bob build",
"release": "dotenv release-it --",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/kubilaysalih/react-native-customizable-toast",
"author": "kubilaysalih <kubilay@kubilay.io> (https://github.com/kubilaysalih)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kubilaysalih/react-native-customizable-toast/issues"
},
"homepage": "https://github.com/kubilaysalih/react-native-customizable-toast#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@react-native-community/eslint-config": "^3.2.0",
"@release-it/conventional-changelog": "^9.0.3",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.16",
"@types/react-native": "0.73.0",
"commitlint": "^19.6.0",
"dotenv-cli": "^7.4.4",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"pod-install": "^0.3.2",
"prettier": "^3.4.2",
"react": "18.3.1",
"react-native": "0.76.5",
"react-native-builder-bob": "^0.35.2",
"react-native-gesture-handler": "^2.21.2",
"react-native-reanimated": "3.16.5",
"release-it": "^17.10.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "^2",
"react-native-reanimated": "^3"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}