mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "react-native-testing-library",
|
|
"version": "1.1.0",
|
|
"description": "Simple React Native testing utilities helping you write better tests with less effort",
|
|
"main": "src/index.js",
|
|
"typings": "./typings/index.d.ts",
|
|
"repository": "git@github.com:callstack/react-native-testing-library.git",
|
|
"author": "Michał Pierzchała <thymikee@gmail.com>",
|
|
"license": "MIT",
|
|
"private": false,
|
|
"devDependencies": {
|
|
"@babel/core": "^7.1.2",
|
|
"@babel/runtime": "^7.1.2",
|
|
"@callstack/eslint-config": "^3.0.0",
|
|
"@types/react": "^16.4.15",
|
|
"@types/react-test-renderer": "^16.0.3",
|
|
"babel-core": "7.0.0-bridge.0",
|
|
"babel-jest": "^23.6.0",
|
|
"eslint": "^5.6.1",
|
|
"flow-bin": "^0.83.0",
|
|
"jest": "^23.6.0",
|
|
"metro-react-native-babel-preset": "^0.48.0",
|
|
"pretty-format": "^23.6.0",
|
|
"react": "16.6.0-alpha.8af6728",
|
|
"react-native": "^0.57.3",
|
|
"react-test-renderer": "16.6.0-alpha.8af6728",
|
|
"strip-ansi": "^5.0.0",
|
|
"typescript": "^3.1.1"
|
|
},
|
|
"peerDependencies": {
|
|
"pretty-format": ">=20.0.0",
|
|
"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"
|
|
},
|
|
"jest": {
|
|
"preset": "react-native"
|
|
}
|
|
}
|