generated from demchenkoalex/react-native-module-template
-
Notifications
You must be signed in to change notification settings - Fork 85
/
package.json
118 lines (118 loc) · 2.99 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
{
"name": "@flyerhq/react-native-chat-ui",
"version": "1.4.3",
"description": "Actively maintained, community-driven chat UI implementation with an optional Firebase BaaS.",
"homepage": "https://flyer.chat",
"repository": {
"type": "git",
"url": "https://github.com/flyerhq/react-native-chat-ui.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Oleksandr Demchenko <alexdemchenko@yahoo.com>",
"contributors": [
"Vitalii Danylov <vitaliidanylov1992@gmail.com>",
"Volodymyr Smolianinov <voidozzer@gmail.com>"
],
"license": "Apache-2.0",
"keywords": [
"chat",
"ui",
"react-native",
"react-native-component",
"ios",
"android",
"typescript"
],
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"compile": "rm -rf lib && tsc -p . && copyup src/assets/*.png lib",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "yarn compile",
"test": "jest",
"type-coverage": "type-coverage"
},
"dependencies": {
"@flyerhq/react-native-keyboard-accessory-view": "^2.3.3",
"@flyerhq/react-native-link-preview": "^1.5.2",
"dayjs": "^1.10.7",
"react-native-image-viewing": "^0.2.1",
"react-native-parsed-text": "^0.0.22"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/runtime": "^7.15.4",
"@react-native-community/eslint-config": "^3.0.1",
"@testing-library/react-native": "^8.0.0",
"@types/jest": "^27.0.2",
"@types/react-native": "^0.66.0",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^27.3.1",
"copyfiles": "^2.4.1",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.3.1",
"metro-react-native-babel-preset": "^0.66.2",
"react": "^17.0.2",
"react-native": "^0.66.1",
"react-native-safe-area-context": "^3.3.2",
"react-test-renderer": "^17.0.2",
"type-coverage": "^2.18.2",
"typescript": "^4.4.4"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/index.{ts,tsx}",
"!**/styles.{ts,tsx}",
"!**/types.{ts,tsx}",
"!**/*.d.ts",
"!**/ImageView.android.ts",
"!**/ImageView.ios.ts",
"!**/ImageView.tsx"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"preset": "react-native",
"setupFiles": [
"./jest/setup.ts"
],
"transformIgnorePatterns": [
"node_modules/(?!(@flyerhq|@react-native|react-native))"
]
},
"typeCoverage": {
"cache": true,
"ignoreCatch": true,
"ignoreNonNullAssertion": true,
"ignoreUnread": true,
"is": 100,
"showRelativePath": true,
"strict": true
}
}