@flyerhq/react-native-link-preview
Version:
Fully customizable preview of the URL extracted from the provided text.
99 lines (98 loc) • 2.37 kB
JSON
{
"name": "@flyerhq/react-native-link-preview",
"version": "1.6.0",
"description": "Fully customizable preview of the URL extracted from the provided text.",
"homepage": "https://github.com/flyerhq/react-native-link-preview#readme",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Oleksandr Demchenko <alexdemchenko@yahoo.com>",
"contributors": [
"Vitalii Danylov <vitaliidanylov1992@gmail.com>"
],
"license": "MIT",
"keywords": [
"link",
"url",
"preview",
"react-component",
"react-native",
"ios",
"android",
"typescript"
],
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"compile": "rm -rf lib && tsc -p .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prepare": "yarn compile",
"test": "jest",
"type-coverage": "type-coverage"
},
"dependencies": {
"html-entities": "^2.3.2"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/runtime": "^7.16.7",
"@react-native-community/eslint-config": "^3.0.1",
"@testing-library/react-native": "^9.0.0",
"@types/jest": "^27.4.0",
"@types/react-native": "^0.66.15",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "^27.4.6",
"eslint": "^7.32.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.4.7",
"metro-react-native-babel-preset": "^0.67.0",
"react": "^17.0.2",
"react-native": "^0.67.1",
"react-test-renderer": "^17.0.2",
"type-coverage": "^2.20.0",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!**/index.{ts,tsx}",
"!**/styles.{ts,tsx}",
"!**/types.{ts,tsx}"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"preset": "react-native"
},
"typeCoverage": {
"cache": true,
"ignoreCatch": true,
"ignoreNonNullAssertion": true,
"ignoreUnread": true,
"is": 100,
"showRelativePath": true,
"strict": true
}
}