UNPKG

cypress-commands

Version:

A collection of Cypress commands to extend and complement the default commands

69 lines (68 loc) 2.44 kB
{ "name": "cypress-commands", "version": "3.0.0", "description": "A collection of Cypress commands to extend and complement the default commands", "license": "MIT", "main": "dist/cypress-commands.js", "module": "dist/cypress-commands.mjs", "types": "dist/types/index.d.ts", "files": [ "dist" ], "scripts": { "test": "npm run test:source", "test:source": "start-server-and-test start:server http://localhost:1337 run:cypress", "test:bundle": "start-server-and-test start:server http://localhost:1337 run:cypress:bundle", "run:cypress": "npm run run:cypress:source", "run:cypress:source": "cypress run --config supportFile=cypress/support/source.js", "run:cypress:bundle": "cypress run --config supportFile=cypress/support/bundle.js", "start": "npm run start:source", "start:server": "static-server app -p 1337", "start:source": "start-server-and-test start:server http://localhost:1337 start:cypress", "start:bundle": "start-server-and-test start:server http://localhost:1337 start:cypress:bundle", "start:cypress": "npm run start:cypress:source", "start:cypress:source": "cypress open --config supportFile=cypress/support/source.js", "start:cypress:bundle": "cypress open --config supportFile=cypress/support/bundle.js", "lint": "eslint ./", "bundle": "rollup -c", "prepublishOnly": "npm run lint && npm run bundle && npm run test:bundle" }, "author": { "name": "Sander van Beek" }, "repository": { "type": "git", "url": "https://github.com/Lakitna/cypress-commands" }, "bugs": { "url": "https://github.com/Lakitna/cypress-commands/issues" }, "keywords": [ "Cypress", "command", "attribute", "text", "to" ], "devDependencies": { "chai-string": "^1.5.0", "cypress": "^10.1.0", "eslint": "^8.17.0", "eslint-config-google": "^0.14.0", "eslint-plugin-cypress": "^2.12.1", "eslint-plugin-import": "^2.26.0", "eslint-plugin-sonarjs": "^0.13.0", "request": "^2.88.2", "rollup": "^2.75.6", "rollup-plugin-commonjs": "^10.1.0", "rollup-plugin-copy": "^3.4.0", "rollup-plugin-delete": "^2.0.0", "rollup-plugin-json": "^4.0.0", "start-server-and-test": "^1.14.0", "static-server": "^2.2.1", "typescript": "^4.7.3" }, "dependencies": { "path-browserify": "^1.0.1" } }