mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
80 lines
2.2 KiB
JSON
80 lines
2.2 KiB
JSON
{
|
|
"name": "react-native-testing-library",
|
|
"version": "1.13.1",
|
|
"description": "Simple React Native testing utilities helping you write better tests with less effort",
|
|
"main": "build/index.js",
|
|
"typings": "./typings/index.d.ts",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://www.github.com/callstack/react-native-testing-library.git"
|
|
},
|
|
"homepage": "https://callstack.github.io/react-native-testing-library",
|
|
"author": "Michał Pierzchała <thymikee@gmail.com>",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"keywords": [
|
|
"react-native",
|
|
"react",
|
|
"test",
|
|
"integration"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.8.4",
|
|
"@babel/core": "^7.9.0",
|
|
"@callstack/eslint-config": "^9.1.0",
|
|
"@release-it/conventional-changelog": "^1.1.0",
|
|
"@types/react": "^16.9.34",
|
|
"@types/react-native": "^0.62.2",
|
|
"@types/react-test-renderer": "^16.9.2",
|
|
"babel-jest": "^25.1.0",
|
|
"conventional-changelog-cli": "^2.0.11",
|
|
"dedent": "^0.7.0",
|
|
"eslint": "^6.8.0",
|
|
"flow-bin": "^0.116.0",
|
|
"flow-copy-source": "^2.0.6",
|
|
"jest": "^25.1.0",
|
|
"metro-react-native-babel-preset": "^0.58.0",
|
|
"react": "^16.13.0",
|
|
"react-native": "^0.62.2",
|
|
"react-test-renderer": "^16.13.0",
|
|
"release-it": "^12.3.3",
|
|
"strip-ansi": "^5.2.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"dependencies": {
|
|
"pretty-format": "^24.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.0.0",
|
|
"react-test-renderer": ">=16.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"flow-check": "flow check",
|
|
"typescript-check": "tsc --noEmit --skipLibCheck --jsx react ./typings/__tests__/*",
|
|
"lint": "eslint src --cache",
|
|
"release": "release-it",
|
|
"prepublish": "yarn build && yarn copy-flowtypes",
|
|
"copy-flowtypes": "flow-copy-source --ignore __tests__/*.js src build",
|
|
"build": "rm -rf build; babel src --out-dir build --ignore 'src/__tests__/*'"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native",
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json"
|
|
],
|
|
"rootDir": "./src"
|
|
},
|
|
"greenkeeper": {
|
|
"ignore": [
|
|
"react",
|
|
"react-test-renderer",
|
|
"metro-react-native-babel-preset"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
}
|
|
}
|