Skip to content

Instantly share code, notes, and snippets.

@adsguilherme
Created April 3, 2021 15:48
Show Gist options
  • Save adsguilherme/9accfed2aff39062f1b13dfecbb81899 to your computer and use it in GitHub Desktop.
Save adsguilherme/9accfed2aff39062f1b13dfecbb81899 to your computer and use it in GitHub Desktop.
package.json
{
"name": "curso-cypress-avancado",
"version": "1.0.0",
"description": "Projeto do curso avançado de Cypress da Escola TAT",
"main": "index.js",
"scripts": {
"lint": "npx standard",
"lint:fix": "npx standard --fix",
"test": "cypress run",
"cy:open": "cypress open"
},
"standard": {
"globals": [
"beforeEach",
"context",
"cy",
"Cypress",
"describe",
"it"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wlsf82/curso-cypress-avancado.git"
},
"keywords": [
"cypress",
"cypress.io",
"testing"
],
"author": "Walmyr Filho <wlsf82@gmail.com> (https://walmyr.dev)",
"license": "MIT",
"homepage": "https://github.com/wlsf82/curso-cypress-avancado#readme",
"devDependencies": {
"cypress": "^6.6.0",
"cypress-localstorage-commands": "^1.4.1",
"faker": "^5.4.0",
"standardjs": "^1.0.0-alpha"
},
"dependencies": {
"standard": "^16.0.3"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment