RandomSec/main/tests/cypress/package.json
Kush Trivedi 6750a45d53
feat: add prettier lint scripts and workflow (#3546)
* feat: add lint scripts and workflow

Signed-off-by: kushthedude <kushthedude@gmail.com>

* fix lint

Signed-off-by: kushthedude <kushthedude@gmail.com>
2021-02-04 15:37:03 +01:00

25 lines
662 B
JSON

{
"name": "openrefine-cypress-test-suite",
"version": "1.0.0",
"description": "Cypress tests for OpenRefine",
"license": "BSD-3-Clause",
"author": "OpenRefine",
"private": true,
"scripts": {
"test": "cypress run --browser electron --headless --quiet",
"lint": "prettier --write .",
"check-lint": "prettier --check ."
},
"dependencies": {
"cypress": "6.2.1",
"cypress-file-upload": "^5.0.2",
"cypress-wait-until": "^1.7.1",
"dotenv": "^8.2.0",
"fs-extra": "^9.1.0",
"uniqid": "^5.2.0"
},
"devDependencies": {
"prettier": "2.2.1"
}
}