cypress-layout-inspector
Version:
Simple utility to provide layout testing functionality to Cypress
68 lines (67 loc) • 1.75 kB
JSON
{
"name": "cypress-layout-inspector",
"version": "1.7.0",
"description": "Simple utility to provide layout testing functionality to Cypress",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/msmps/cypress-layout-inspector"
},
"author": "Matthew Simpson <hello@msmp.me> (https://msmp.me)",
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsup src/index.ts --dts --format cjs",
"format": "prettier --write \"{src,types}/**/*.ts\" \"cypress/**/*.{js,html}\"",
"lint": "eslint {src,types}/**/*.ts",
"test": "cypress run",
"test:debug": "cypress open",
"postinstall": "node ./scripts/postinstall.js || exit 0",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cypress": "^11.2.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-cypress": "^2.12.1",
"husky": "^8.0.2",
"lint-staged": "^13.1.0",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"tsup": "^6.5.0",
"typescript": "^4.9.3"
},
"files": [
"dist",
"scripts",
"add-support.js"
],
"keywords": [
"testing",
"cypress",
"ui",
"dom",
"functional"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-empty": [
2,
"never"
]
}
},
"lint-staged": {
"src/**/*.ts": "npm run lint",
"{src,cypress}/**/*.{ts,js,html}": "npm run format"
}
}