-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.58 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.58 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
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
{
"name": "@nonsobarn/react-native-versatile-modal",
"version": "1.0.0",
"description": "A flexible and customizable modal component for React Native with support for bottom sheets, drawers, center modals, and full-screen modals",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"react-native": "src/index.ts",
"files": [
"lib",
"src",
"README.md"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"react-native",
"modal",
"bottom-sheet",
"drawer",
"dialog",
"popup",
"overlay",
"animated",
"typescript",
"ios",
"android"
],
"author": "Nonso Barn nonsobarn@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/NonsoBarn/react-native-versatile-modal.git"
},
"bugs": {
"url": "https://github.com/NonsoBarn/react-native-versatile-modal/issues"
},
"homepage": "https://github.com/NonsoBarn/react-native-versatile-modal#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"devDependencies": {
"@react-native/eslint-config": "0.72.2",
"@testing-library/react-native": "12.3.0",
"@testing-library/jest-native": "5.4.2",
"@types/jest": "29.5.5",
"@types/react": "18.2.21",
"@types/react-native": "0.72.2",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"babel-jest": "29.6.0",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"jest": "29.7.0",
"metro-react-native-babel-preset": "0.76.0",
"prettier": "3.0.3",
"react": "18.2.0",
"react-native": "0.72.6",
"react-test-renderer": "18.2.0",
"typescript": "5.2.2"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(react-native|@react-native)/)"
],
"testMatch": [
"**/__tests__/**/*.test.(ts|tsx|js)"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/*.d.ts",
"!src/__tests__/**"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
]
}
}