react-navigation-stack/package.json

97 lines
2.9 KiB
JSON
Raw Normal View History

2018-08-03 21:59:12 +00:00
{
"name": "react-navigation-stack",
2018-10-26 16:34:11 +00:00
"version": "1.0.0-alpha.24",
2018-08-03 22:03:00 +00:00
"description": "Stack navigator component for React Navigation",
2018-08-03 21:59:12 +00:00
"main": "dist/index.js",
"files": [
2018-09-26 22:21:28 +00:00
"dist/",
"src/",
2018-09-26 22:21:08 +00:00
"LICENSE.md",
"README.md"
2018-10-12 18:23:17 +00:00
],
"react-native": "src/index.js",
2018-08-03 21:59:12 +00:00
"scripts": {
"test": "jest",
"lint": "eslint .",
"format": "eslint . --fix",
2018-08-03 23:02:38 +00:00
"build": "babel --no-babelrc --plugins=syntax-jsx,syntax-class-properties,syntax-object-rest-spread,transform-flow-strip-types src --copy-files --out-dir dist --ignore '**/__tests__/**'",
2018-10-15 18:56:27 +00:00
"prepare": "yarn build",
"release": "release-it"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
2018-08-03 21:59:12 +00:00
},
"keywords": [
"react-native-component",
"react-component",
"react-native",
"ios",
"android",
2018-08-03 22:03:00 +00:00
"stack"
2018-08-03 21:59:12 +00:00
],
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/react-navigation-stack.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/react-navigation/react-navigation-stack/issues"
},
"homepage": "https://github.com/react-navigation/react-navigation-stack#readme",
"devDependencies": {
"@expo/vector-icons": "^6.2.0",
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.1",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-react-native": "^4.0.0",
2018-10-15 18:56:27 +00:00
"conventional-changelog-cli": "^2.0.5",
2018-08-03 21:59:12 +00:00
"eslint": "^4.12.1",
"eslint-config-satya164": "^1.0.1",
"eslint-plugin-react-native-globals": "^0.1.0",
"husky": "^0.14.3",
"jest": "^22.1.3",
"prettier": "^1.8.2",
"react": "16.3.1",
"react-dom": "16.3.1",
"react-native": "~0.55.4",
2018-10-12 18:23:17 +00:00
"react-native-gesture-handler": "^1.0.8",
2018-10-15 18:56:27 +00:00
"react-test-renderer": "16.3.1",
"release-it": "^7.6.1",
"@react-navigation/core": "^3.0.0-alpha",
"@react-navigation/native": "^3.0.0-alpha"
2018-08-03 21:59:12 +00:00
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "^1.0.0",
"react-native-reanimated": "^1.0.0 || ^1.0.0-alpha",
"react-native-screens": "^1.0.0 || ^1.0.0-alpha",
"@react-navigation/core": "^3.0.0-alpha",
"@react-navigation/native": "^3.0.0-alpha"
2018-08-03 21:59:12 +00:00
},
"jest": {
"preset": "react-native",
"testRegex": "/__tests__/[^/]+-test\\.js$",
"setupFiles": [
"<rootDir>/jest-setup.js"
],
"coveragePathIgnorePatterns": [
"jest-setup.js"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/"
],
"transformIgnorePatterns": [
2018-10-12 18:23:17 +00:00
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|react-navigation-deprecated-tab-navigator|@react-navigation/core|@react-navigation/native)"
2018-08-03 21:59:12 +00:00
]
},
"prettier": {
"trailingComma": "es5",
"singleQuote": true
2018-08-03 21:59:12 +00:00
}
}