mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
106 lines
3.4 KiB
JSON
106 lines
3.4 KiB
JSON
{
|
|
"name": "@testing-library/react-native",
|
|
"version": "13.3.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> (https://github.com/thymikee), Maciej Jastrzębski <mdjastrzebski@gmail.com> (https://github.com/mdjastrzebski)",
|
|
"contributors": [
|
|
"Augustin Le Fèvre <augustin.le-fevre@klarna.com> (https://github.com/AugustinLF)",
|
|
"Pierre Zimmermann <pierrez@nam.tech> (https://github.com/pierrezimmermannbam)",
|
|
"MattAgn <matthieua@bam.tech> (https://github.com/MattAgn)"
|
|
],
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"react-native",
|
|
"react",
|
|
"test",
|
|
"integration"
|
|
],
|
|
"scripts": {
|
|
"clean": "del build",
|
|
"test": "jest",
|
|
"test:ci": "jest --maxWorkers=2",
|
|
"test:ci:coverage": "jest --maxWorkers=2 --collectCoverage=true --coverage-provider=v8",
|
|
"typecheck": "tsc",
|
|
"copy-flowtypes": "cp typings/index.flow.js build",
|
|
"lint": "eslint src --cache",
|
|
"validate": "yarn lint && yarn typecheck && yarn test",
|
|
"build:js": "babel src --out-dir build --extensions \".js,.ts,.jsx,.tsx\" --source-maps --ignore \"**/__tests__/**\"",
|
|
"build:ts": "tsc --build tsconfig.release.json",
|
|
"build": "yarn clean && yarn build:js && yarn build:ts && yarn copy-flowtypes",
|
|
"release": "release-it",
|
|
"release:rc": "release-it --preRelease=rc"
|
|
},
|
|
"files": [
|
|
"build/",
|
|
"matchers.js",
|
|
"matchers.d.ts",
|
|
"pure.js",
|
|
"pure.d.ts",
|
|
"dont-cleanup-after-each.js",
|
|
"typings/index.flow.js"
|
|
],
|
|
"dependencies": {
|
|
"jest-matcher-utils": "^30.0.5",
|
|
"picocolors": "^1.1.1",
|
|
"pretty-format": "^30.0.5",
|
|
"redent": "^3.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"jest": ">=29.0.0",
|
|
"react": ">=18.2.0",
|
|
"react-native": ">=0.71",
|
|
"react-test-renderer": ">=18.2.0"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"jest": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.28.3",
|
|
"@babel/core": "^7.28.3",
|
|
"@babel/plugin-transform-strict-mode": "^7.27.1",
|
|
"@babel/preset-env": "^7.28.3",
|
|
"@babel/preset-flow": "^7.27.1",
|
|
"@babel/preset-react": "^7.27.1",
|
|
"@babel/preset-typescript": "^7.27.1",
|
|
"@callstack/eslint-config": "^15.0.0",
|
|
"@react-native/babel-preset": "0.81.0",
|
|
"@release-it/conventional-changelog": "^10.0.1",
|
|
"@relmify/jest-serializer-strip-ansi": "^1.0.2",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^24.3.0",
|
|
"@types/react": "^19.1.10",
|
|
"@types/react-test-renderer": "^19.1.0",
|
|
"babel-jest": "^30.0.5",
|
|
"babel-plugin-module-resolver": "^5.0.2",
|
|
"del-cli": "^6.0.0",
|
|
"eslint": "^9.33.0",
|
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
"flow-bin": "~0.170.0",
|
|
"jest": "^30.0.5",
|
|
"prettier": "^3.6.2",
|
|
"react": "19.1.0",
|
|
"react-native": "0.81.0",
|
|
"react-native-gesture-handler": "^2.28.0",
|
|
"react-test-renderer": "19.1.0",
|
|
"release-it": "^19.0.4",
|
|
"typescript": "^5.9.2",
|
|
"typescript-eslint": "^8.39.1"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org"
|
|
},
|
|
"packageManager": "yarn@4.9.1",
|
|
"engines": {
|
|
"node": ">=18"
|
|
}
|
|
}
|