enhanced-crs
Version:
cypress plugin to locate react elements by component, props and state
68 lines (67 loc) • 2.14 kB
JSON
{
"name": "enhanced-crs",
"version": "1.0.3",
"description": "cypress plugin to locate react elements by component, props and state",
"main": "./index.js",
"keywords": [
"react",
"cypress",
"cypress-plugin",
"cypress-react",
"cypress-io",
"cypress-react-selector"
],
"scripts": {
"test": "cypress run --headless && cypress run-ct",
"format": "npx prettier --write .",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm run release",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm run release",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm run release",
"release": "npm cache clean --force && npm publish --force"
},
"author": "Alessandro Defendenti (Radicalbit S.r.l.)",
"license": "MIT",
"devDependencies": {
"@cypress/react": "^5.3.2",
"@cypress/webpack-dev-server": "^1.1.2",
"cypress": "7.7.0",
"generate-changelog": "^1.8.0",
"html-webpack-plugin": "4",
"husky": "7.0.1",
"lint-staged": "11.0.0",
"prettier": "^2.0.5",
"pretty-quick": "3.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "^4.0.3",
"react-shadow-root": "^5.0.4"
},
"dependencies": {
"enhanced-resq": "1.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/TheFe91/cypress-react-selector.git"
},
"bugs": {
"url": "https://github.com/TheFe91/cypress-react-selector/issues"
},
"homepage": "https://github.com/TheFe91/cypress-react-selector#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*": [
"pretty-quick --staged"
],
"src/**/*.js": [
"npm run format",
"npx cypress run"
],
"cypress/**/*.js": [
"npm run format"
]
}
}