react-native-navigation-drilldown
Version:
Drilldown screens to use with react-navigation
82 lines (81 loc) • 2.18 kB
JSON
{
"name": "react-native-navigation-drilldown",
"version": "0.0.22",
"description": "Drilldown screens to use with react-navigation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"assets": "cp ./src/icons/*.png ./dist/icons",
"build": "mkdir -p ./dist/icons | npm run tsc | npm run assets",
"prepack": "npm run build",
"tsc": "tsc",
"tsc:watch": "tsc --watch",
"test": "jest"
},
"keywords": [
"react-native",
"react-navigation",
"navigation",
"drilldown"
],
"author": "Konstantin Kuznetsov",
"license": "MIT",
"bugs": {
"url": "https://github.com/doomsower/react-native-navigation-drilldown/issues"
},
"homepage": "https://github.com/doomsower/react-native-navigation-drilldown#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/doomsower/react-native-navigation-drilldown.git"
},
"devDependencies": {
"@types/jest": "^22.2.0",
"@types/lodash": "^4.14.76",
"@types/lodash.flatmapdeep": "^4.10.0",
"@types/react": "^16.0.5",
"@types/react-native": "^0.55.26",
"@types/react-navigation": "^2.0.9",
"jest": "^22.4.2",
"react": "^16.2.0",
"react-native": "^0.54.0",
"react-native-portal": "^1.3.0",
"react-navigation": "^2.0.0",
"ts-jest": "^22.4.1",
"tslib": "^1.7.1",
"tslint": "^5.7.0",
"tslint-eslint-rules": "^5.1.0",
"tslint-react": "^3.2.0",
"typescript": "^2.5.2"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-portal": "^1.3.0",
"react-navigation": "^2.0.0"
},
"dependencies": {
"babel-jest": "^22.4.3",
"lodash": "^4.17.4",
"react-native-platform-touchable": "^1.1.1"
},
"jest": {
"preset": "react-native",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"options.ts"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/",
"<rootDir>/dist/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}