mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-09 09:13:32 +08:00
70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"name": "react-navigation-animated-switch",
|
|
"version": "0.4.1",
|
|
"description": "Animated switch for React Navigation",
|
|
"main": "lib/commonjs/index.js",
|
|
"react-native": "lib/module/index.js",
|
|
"module": "lib/module/index.js",
|
|
"types": "lib/typescript/src/index.d.ts",
|
|
"author": "",
|
|
"license": "MIT",
|
|
"files": [
|
|
"src",
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint --ext .js,.ts,.tsx .",
|
|
"prepare": "bob build",
|
|
"release": "release-it",
|
|
"typescript": "tsc --noEmit",
|
|
"example": "yarn --cwd example",
|
|
"bootstrap": "yarn example && yarn"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/config-conventional": "8.2.0",
|
|
"@react-native-community/bob": "0.7.0",
|
|
"@release-it/conventional-changelog": "1.1.0",
|
|
"@types/react": "16.9.16",
|
|
"@types/react-native": "0.60.25",
|
|
"commitlint": "8.2.0",
|
|
"eslint": "^6.7.2",
|
|
"eslint-config-satya164": "^3.1.2",
|
|
"husky": "3.1.0",
|
|
"prettier": "^1.19.1",
|
|
"react": "~16.9.0",
|
|
"react-native": "~0.61.5",
|
|
"react-native-reanimated": "~1.4.0",
|
|
"react-navigation": "^4.0.10",
|
|
"release-it": "12.4.3",
|
|
"typescript": "3.7.3"
|
|
},
|
|
"peerDependencies": {
|
|
"react-navigation": "^4.0.0",
|
|
"react": "*",
|
|
"react-native": "*",
|
|
"react-native-reanimated": "^1.0.0"
|
|
},
|
|
"prettier": {
|
|
"trailingComma": "es5",
|
|
"singleQuote": true
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "yarn lint && yarn typescript",
|
|
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
|
|
}
|
|
},
|
|
"@react-native-community/bob": {
|
|
"source": "src",
|
|
"output": "lib",
|
|
"targets": [
|
|
"commonjs",
|
|
"module",
|
|
"typescript"
|
|
]
|
|
}
|
|
}
|