Files
callstack__react-native-tes…/package.json
T
Michał Pierzchała e85aa187e1 chore: upgrade pretty-format to v28 to match Jest deps (#1019)
* v11.0.0-rc.0

* chore: upgrade pretty-format to v28 to match Jest deps
2022-07-21 09:31:29 +02:00

100 lines
2.9 KiB
JSON

{
"name": "@testing-library/react-native",
"version": "11.0.0-rc.0",
"description": "Simple and complete React Native testing utilities that encourage good testing practices.",
"main": "build/index.js",
"types": "build/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"
],
"files": [
"build/",
"jest-preset/",
"typings/index.flow.js",
"pure.js",
"dont-cleanup-after-each.js"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-flow-strip-types": "^7.18.0",
"@babel/preset-env": "^7.9.6",
"@babel/preset-flow": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.16.0",
"@callstack/eslint-config": "^11.0.0",
"@release-it/conventional-changelog": "^2.0.0",
"@testing-library/jest-native": "~4.0.2",
"@types/jest": "^28.0.0",
"@types/react": "^18.0.0",
"@types/react-native": "^0.69.1",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^28.0.0",
"conventional-changelog-cli": "^2.0.11",
"cp-cli": "^2.0.0",
"dedent": "^0.7.0",
"del-cli": "^3.0.1",
"eslint": "^7.32.0",
"flow-bin": "~0.170.0",
"flow-copy-source": "^2.0.9",
"jest": "^28.0.0",
"react": "^18.0.0",
"react-native": "~0.69.1",
"react-test-renderer": "^18.0.0",
"release-it": "^14.0.3",
"strip-ansi": "^6.0.0",
"typescript": "^4.0.2"
},
"dependencies": {
"pretty-format": "^28.1.3"
},
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.59",
"react-test-renderer": ">=16.0.0"
},
"scripts": {
"clean": "del build",
"test": "jest",
"test:ci": "jest --maxWorkers=2",
"typecheck": "tsc",
"flow": "flow",
"copy-flowtypes": "cp typings/index.flow.js build",
"lint": "eslint src --cache",
"release": "release-it",
"prepublish": "yarn build",
"build:js": "babel src --out-dir build --extensions \".js,.ts,.jsx,.tsx\" --source-maps --ignore \"**/__tests__/**\"",
"build:js:watch": "yarn build:js --watch",
"build:ts": "tsc --build tsconfig.release.json",
"build:ts:watch": "yarn build:ts --watch --preserveWatchOutput",
"build": "yarn clean && yarn build:js && yarn build:ts && yarn copy-flowtypes",
"prepare": "yarn build"
},
"jest": {
"preset": "./jest-preset",
"setupFiles": [
"./jestSetup.js"
],
"testPathIgnorePatterns": [
"timerUtils",
"examples/"
],
"testTimeout": 60000,
"transformIgnorePatterns": [
"/node_modules/(?!(@react-native|react-native)/).*/"
]
}
}