kaltura-player-rn
Version:
React Native Library for KalturaPlayer
124 lines (123 loc) • 2.94 kB
JSON
{
"name": "kaltura-player-rn",
"version": "0.4.2",
"description": "React Native Library for KalturaPlayer",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"keywords": [
"react-native player",
"react-native",
"ios",
"android",
"video player",
"video streaming",
"exoplayer",
"avplayer"
],
"repository": "https://github.com/kaltura/kaltura-player-rn",
"author": "Kaltura Player Team (community@kaltura.com)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/kaltura/kaltura-player-rn/issues"
},
"homepage": "https://github.com/kaltura/kaltura-player-rn#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react-native": ">=0.66.5"
},
"dependencies": {
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-native": ">=0.66.5"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.1.6",
"@babel/runtime": "^7.17.9",
"@commitlint/config-conventional": "^11.0.0",
"@react-native-community/eslint-config": "*",
"@types/jest": "^26.0.0",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"commitlint": "^11.0.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^6.0.0",
"jest": "^26.6.3",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react-native-builder-bob": "^0.18.0",
"typescript": "^4.1.3"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@react-native-community",
"prettier"
],
"rules": {
"prettier/prettier": [
"error",
{
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}