mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 16:35:14 +00:00
89 lines
2.4 KiB
JSON
89 lines
2.4 KiB
JSON
{
|
|
"name": "@testing-library/react",
|
|
"version": "11.2.7",
|
|
"description": "Simple and complete React DOM testing utilities that encourage good testing practices.",
|
|
"main": "dist/index.js",
|
|
"types": "types/index.d.ts",
|
|
"module": "dist/@testing-library/react.esm.js",
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"prebuild": "rimraf dist",
|
|
"build": "npm-run-all --parallel build:main build:bundle:main build:bundle:pure",
|
|
"build:bundle:main": "dotenv -e .bundle.main.env kcd-scripts build -- --bundle --no-clean",
|
|
"build:bundle:pure": "dotenv -e .bundle.main.env -e .bundle.pure.env kcd-scripts build -- --bundle --no-clean",
|
|
"build:main": "kcd-scripts build --no-clean",
|
|
"lint": "kcd-scripts lint",
|
|
"setup": "npm install && npm run validate -s",
|
|
"test": "kcd-scripts test",
|
|
"test:update": "npm test -- --updateSnapshot --coverage",
|
|
"typecheck": "kcd-scripts typecheck --build types",
|
|
"validate": "kcd-scripts validate"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"dont-cleanup-after-each.js",
|
|
"pure.js",
|
|
"pure.d.ts",
|
|
"types/*.d.ts"
|
|
],
|
|
"keywords": [
|
|
"testing",
|
|
"react",
|
|
"ui",
|
|
"dom",
|
|
"jsdom",
|
|
"unit",
|
|
"integration",
|
|
"functional",
|
|
"end-to-end",
|
|
"e2e"
|
|
],
|
|
"author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.12.5",
|
|
"@testing-library/dom": "^7.28.1"
|
|
},
|
|
"devDependencies": {
|
|
"@testing-library/jest-dom": "^5.11.6",
|
|
"@types/react-dom": "^17.0.0",
|
|
"dotenv-cli": "^4.0.0",
|
|
"kcd-scripts": "^7.5.1",
|
|
"npm-run-all": "^4.1.5",
|
|
"react": "^17.0.1",
|
|
"react-dom": "^17.0.1",
|
|
"rimraf": "^3.0.2",
|
|
"typescript": "^4.1.2"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "*",
|
|
"react-dom": "*"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "./node_modules/kcd-scripts/eslint.js",
|
|
"rules": {
|
|
"react/prop-types": "off",
|
|
"react/no-adjacent-inline-elements": "off",
|
|
"import/no-unassigned-import": "off",
|
|
"import/named": "off",
|
|
"testing-library/no-dom-import": "off"
|
|
}
|
|
},
|
|
"eslintIgnore": [
|
|
"node_modules",
|
|
"coverage",
|
|
"dist",
|
|
"*.d.ts"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/testing-library/react-testing-library"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/testing-library/react-testing-library/issues"
|
|
},
|
|
"homepage": "https://github.com/testing-library/react-testing-library#readme"
|
|
}
|