Files
react-navigation/packages/native/package.json
Satyajit Sahoo 3bdbd89515 chore: update repo url for packages
npm only shows correct link if we use the link directly instead of repo metadata
2020-01-09 01:39:48 +01:00

54 lines
1.2 KiB
JSON

{
"name": "@react-navigation/native",
"description": "React Native integration for React Navigation",
"keywords": [
"react-native",
"react-navigation",
"ios",
"android"
],
"version": "5.0.0-alpha.22",
"license": "MIT",
"repository": "https://github.com/react-navigation/navigation-ex/tree/master/packages/native",
"main": "lib/commonjs/index.js",
"react-native": "src/index.tsx",
"module": "lib/module/index.js",
"types": "lib/typescript/native/src/index.d.ts",
"files": [
"src",
"lib"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prepare": "bob build",
"clean": "del lib"
},
"dependencies": {
"@react-navigation/core": "^5.0.0-alpha.30"
},
"devDependencies": {
"@react-native-community/bob": "^0.7.0",
"@types/react": "^16.9.16",
"@types/react-native": "^0.60.25",
"del-cli": "^3.0.0",
"react": "~16.9.0",
"react-native": "~0.61.5",
"typescript": "^3.7.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}