@mattermost/react-native-emm
Version:
React Native package for EMM managed configurations
164 lines (163 loc) • 3.81 kB
JSON
{
"name": "@mattermost/react-native-emm",
"version": "1.6.2",
"description": "React Native package for EMM managed configurations",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.ts",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-emm.podspec",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"!example",
"!.vscode",
"!**/.idea",
"!**/.gradle",
"!android/build",
"!ios/Build",
".circleci"
],
"scripts": {
"test": "jest",
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"example": "cd example && npm",
"pods": "cd example && RCT_NEW_ARCH_ENABLED=1 pod-install --quiet",
"bootstrap": "npm run example i && npm run pods"
},
"keywords": [
"react-native",
"ios",
"android",
"emm"
],
"repository": "https://github.com/mattermost/react-native-emm",
"author": "Mattermost <nahumhbl@gmail.com> (https://github.com/mattermost)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattermost/react-native-emm/issues"
},
"homepage": "https://github.com/mattermost/react-native-emm#readme",
"devDependencies": {
"@commitlint/config-conventional": "19.6.0",
"@react-native/eslint-config": "0.76.5",
"@react-native/metro-config": "0.76.5",
"@release-it/conventional-changelog": "9.0.3",
"@types/jest": "29.5.14",
"@types/react": "18.3.1",
"@typescript-eslint/eslint-plugin": "7.14.1",
"@typescript-eslint/parser": "7.14.1",
"commitlint": "19.6.1",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-prettier": "5.2.1",
"husky": "9.1.7",
"jest": "29.7.0",
"pod-install": "0.3.2",
"prettier": "3.4.2",
"react": "18.3.1",
"react-native": "0.76.5",
"react-native-builder-bob": "0.35.2",
"release-it": "17.10.0",
"typescript": "5.7.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"codegenConfig": {
"name": "EmmSpec",
"type": "modules",
"jsSrcsDir": "./src",
"android": {
"javaPackageName": "com.mattermost.emm"
}
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "conventionalcommits"
}
}
}
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"@react-native",
"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": 4,
"trailingComma": "es5",
"useTabs": false
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
[
"typescript",
{
"project": "tsconfig.build.json"
}
]
]
}
}