react-native-ios-context-menu/package.json
2020-11-09 03:58:19 +08:00

94 lines
2.2 KiB
JSON

{
"name": "react-native-ios-context-menu",
"version": "0.1.7",
"description": "A react-native component to use `UIContextMenu` on iOS 13+",
"main": "lib/commonjs/index",
"module": "lib/module/index",
"react-native": "src/index",
"source": "src/index",
"files": [
"src",
"lib",
"android",
"ios",
"cpp",
"react-native-ios-context-menu.podspec",
"!lib/typescript/example",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"scripts": {
"typescript": "tsc --noEmit",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"prepare": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"pods": "cd example && pod-install --quiet",
"bootstrap": "yarn example && yarn && yarn pods"
},
"keywords": [
"react-native",
"ios"
],
"repository": "https://github.com/dominicstop/react-native-ios-context-menu",
"author": "Dominic Go <dominicstop@gmail.com> (https://github.com/dominicstop)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dominicstop/react-native-ios-context-menu/issues"
},
"homepage": "https://github.com/dominicstop/react-native-ios-context-menu#readme",
"devDependencies": {
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^2.0.0",
"@release-it/conventional-changelog": "^1.1.4",
"@types/react": "^16.9.19",
"@types/react-native": "0.62.13",
"eslint": "^7.2.0",
"pod-install": "^0.1.0",
"react": "16.11.0",
"react-native": "0.62.2",
"release-it": "^13.5.8",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"release-it": {
"git": {
"commitMessage": "⚙️ chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"eslintConfig": {
"extends": [
"@react-native-community"
],
"rules": {}
},
"eslintIgnore": [
"node_modules/",
"lib/"
],
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module"
]
}
}