amazon-ivs-react-native-broadcast
Version:
A React Native wrapper for the Amazon IVS iOS and Android broadcast SDKs
174 lines (173 loc) • 4.51 kB
JSON
{
"name": "amazon-ivs-react-native-broadcast",
"version": "1.2.1",
"description": "A React Native wrapper for the Amazon IVS iOS and Android broadcast SDKs",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index",
"source": "src/index",
"sdkVersion": {
"ios": "1.7.1",
"android": "1.7.2"
},
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"amazon-ivs-react-native-broadcast.podspec",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!e2e",
"!assets"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint:check": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:format": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"prettier:format": "prettier --write .",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods",
"e2e:android:build": "detox build --configuration android.emu.debug",
"e2e:android:test": "detox test --configuration android.emu.debug --take-screenshots none --loglevel verbose"
},
"keywords": [
"react-native",
"ivs",
"amazon",
"broadcast",
"stream",
"sdk"
],
"repository": "https://github.com/apiko-dev/amazon-ivs-react-native-broadcast",
"author": "Andrew Shapovalov <a.shapovalov@apiko.com> (https://apiko.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/apiko-dev/amazon-ivs-react-native-broadcast/issues"
},
"homepage": "https://github.com/apiko-dev/amazon-ivs-react-native-broadcast#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^16.2.1",
"@react-native-community/eslint-config": "^3.0.1",
"@release-it/conventional-changelog": "^4.1.0",
"@testing-library/react-native": "^10.1.1",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.39",
"@types/react-native": "^0.66.16",
"@typescript-eslint/eslint-plugin": "^5.12.0",
"@typescript-eslint/parser": "^5.12.0",
"commitlint": "^16.2.1",
"detox": "19.4.5",
"eslint": "7.32.0",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"pod-install": "^0.1.0",
"prettier": "^2.5.1",
"react": "17.0.2",
"react-native": "0.67.5",
"react-native-builder-bob": "^0.18.2",
"react-test-renderer": "17.0.2",
"release-it": "^14.2.2",
"typescript": "^4.5.5"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}",
"tagName": "${version}",
"requireCleanWorkingDir": false
},
"npm": {
"publish": false
},
"github": {
"release": false,
"releaseName": "${version}"
}
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"@react-native-community",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"plugins": [
"detox"
],
"rules": {
"@typescript-eslint/no-unused-vars": 2,
"@typescript-eslint/no-explicit-any": 2,
"@typescript-eslint/no-var-requires": 0,
"react/react-in-jsx-scope": 0,
"no-shadow": 0,
"@typescript-eslint/no-shadow": 1,
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "interface",
"format": null,
"prefix": [
"I"
]
}
]
}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"arrowParens": "avoid"
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}