mirror of
https://github.com/zhigang1992/react-native-chat-ui.git
synced 2026-01-12 22:50:15 +08:00
109 lines
2.7 KiB
JSON
109 lines
2.7 KiB
JSON
{
|
|
"name": "@flyerhq/react-native-chat-ui",
|
|
"version": "1.0.1",
|
|
"description": "Actively maintained, community-driven chat UI implementation with an optional Firebase BaaS.",
|
|
"homepage": "https://flyer.chat",
|
|
"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.1.1",
|
|
"@flyerhq/react-native-link-preview": "^1.2.0",
|
|
"dayjs": "^1.10.4",
|
|
"react-native-image-viewing": "^0.2.0",
|
|
"react-native-parsed-text": "^0.0.22"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.13.10",
|
|
"@babel/runtime": "^7.13.10",
|
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
"@testing-library/react-native": "^7.2.0",
|
|
"@types/jest": "^26.0.21",
|
|
"@types/react-native": "^0.64.0",
|
|
"@types/react-test-renderer": "^17.0.1",
|
|
"babel-jest": "^26.6.3",
|
|
"copyfiles": "^2.4.1",
|
|
"eslint": "^7.22.0",
|
|
"eslint-plugin-jest": "^24.3.2",
|
|
"eslint-plugin-simple-import-sort": "^7.0.0",
|
|
"jest": "^26.6.3",
|
|
"metro-react-native-babel-preset": "^0.65.2",
|
|
"react": "^17.0.1",
|
|
"react-native": "^0.64.0",
|
|
"react-native-safe-area-context": "^3.2.0",
|
|
"react-test-renderer": "^17.0.1",
|
|
"type-coverage": "^2.17.0",
|
|
"typescript": "^4.2.3"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "*",
|
|
"react-native": "*"
|
|
},
|
|
"jest": {
|
|
"collectCoverage": true,
|
|
"collectCoverageFrom": [
|
|
"src/**/*.{ts,tsx}",
|
|
"!**/index.{ts,tsx}",
|
|
"!**/styles.{ts,tsx}",
|
|
"!**/types.{ts,tsx}",
|
|
"!**/*.d.ts"
|
|
],
|
|
"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,
|
|
"is": 100,
|
|
"strict": true
|
|
}
|
|
}
|