UNPKG

react-performance-testing

Version:

You can test React(ReactNative) runtime performance by using this lib. If you want to check the number of renders, or render time in a test environment, this lib makes sense.

51 lines (50 loc) 1.43 kB
{ "name": "react-performance-testing", "version": "2.0.0", "main": "dist/index.cjs.js", "module": "dist/index.esm.js", "react-native": "native/dist/index.cjs.js", "types": "dist/src/index.d.ts", "sideEffects": false, "files": [ "dist", "native", "jsx-runtime.js", "jsx-dev-runtime.js", "jsx-dev-runtime.d.ts", "jsx-dev-runtime.d.ts" ], "description": "You can test React(ReactNative) runtime performance by using this lib. If you want to check the number of renders, or render time in a test environment, this lib makes sense.", "repository": { "type": "git", "url": "https://github.com/keiya01/react-performance-testing/" }, "bugs": { "url": "https://github.com/keiya01/react-performance-testing/issues" }, "homepage": "https://github.com/keiya01/react-performance-testing#readme", "author": "keiya01", "keywords": [ "react", "react-native", "ui", "unit", "test", "testing", "performance" ], "license": "MIT", "scripts": { "test": "jest --runInBand", "build": "rollup -c rollup.config.js", "cp:readme": "cp ../../README.md .", "prepublish": "yarn cp:readme && yarn test && yarn build" }, "dependencies": { "@types/react-native": "^0.63.8", "@types/styled-components": "^5.1.2", "metro-react-native-babel-preset": "^0.62.0", "react-native": "^0.63.2", "styled-components": "^5.1.1" } }