@deploysentinel/cypress-quarantine
Version:
Cypress plugin that helps devs to quarantine tests dynamically
75 lines (74 loc) • 2.28 kB
JSON
{
"name": "@deploysentinel/cypress-quarantine",
"license": "MIT",
"description": "Cypress plugin that helps devs to quarantine tests dynamically",
"version": "0.1.4",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"author": {
"name": "DeploySentinel"
},
"scripts": {
"clean": "rimraf coverage dist tmp",
"prebuild": "npm run clean",
"build": "NODE_ENV=production rollup -c rollup.config.js",
"postbuild": "./bin/release-script.sh",
"ci:unit": "jest --coverage",
"ci:lint": "yarn lint && yarn tsc --noEmit",
"ci:e2e": "node ./cypress/server.js & yarn run cypress run --browser chrome",
"dev:unit": "jest --watchAll",
"prettier": "prettier --config .prettierrc --write .",
"lint": "eslint . --ext .ts",
"dev": "rollup -c rollup.config.js -w",
"release": "yarn build && yarn changeset publish && git push --follow-tags"
},
"dependencies": {
"@deploysentinel/debugger-core": "^0.3.4",
"ansi-styles": "^6.1.0",
"axios": "^1.3.3",
"axios-retry": "^3.4.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@rollup/plugin-commonjs": "^24.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.2.1",
"@types/chrome-remote-interface": "^0.31.7",
"@types/lodash": "^4.14.191",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"cypress": "^12.5.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.2",
"json-server": "^0.17.1",
"prettier": "^2.8.4",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^5.1.0",
"rollup-plugin-typescript2": "0.33.0",
"typescript": "^4.9.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.ts": "eslint"
},
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git://github.com/DeploySentinel/cypress-quarantine.git"
},
"homepage": "https://github.com/DeploySentinel/cypress-quarantine",
"keywords": [
"cypress",
"plugin",
"test",
"testing",
"quarantine"
]
}