-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
50 lines (50 loc) · 1.45 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "cypress-api-for-studies",
"description": "repositório de testes api rest com cypress e mocha",
"private": true,
"dependencies": {
"cypress": "^7.2.0",
"mocha": "^8.3.2"
},
"devDependencies": {
"@shelex/cypress-allure-plugin": "^2.5.1",
"cypress-multi-reporters": "^1.5.0",
"faker": "^5.5.3",
"http-status-codes": "^2.1.0",
"npm-run-all": "^4.1.5",
"standard": "^16.0.3"
},
"standard": {
"globals": [
"Cypress",
"cy",
"expect",
"localStorage",
"credentials",
"describe",
"it",
"before",
"beforeEach"
]
},
"scripts": {
"allure:report": "allure generate allure-results --clean -o allure-report",
"allure:history": "mv -f allure-report/history allure-results/history && rm -r allure-report || true",
"allure:clear": "rm -r allure-results/ allure-report cypress/screenshots || true",
"cy:open": "npx cypress open --env allure=true",
"cy:run": "npx cypress run --env allure=true",
"test": "npm-run-all allure:clear cy:run allure:report",
"lint": "standard",
"lint:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uLucasFraga/cypress_api_for_studies.git"
},
"author": "Lucas Fraga",
"license": "MIT",
"bugs": {
"url": "https://github.com/uLucasFraga/cypress_api_for_studies/issues"
},
"homepage": "https://github.com/uLucasFraga/cypress_api_for_studies#readme"
}