generated from mmisty/cypress-grep-example
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 2.66 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
51
52
53
{
"name": "cypress-grep-example",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"update:adapter:js": "cd examples/cypress-js && npm install @mmisty/cypress-allure-adapter@latest",
"update:adapter:ts": "cd examples/cypress-ts && npm install @mmisty/cypress-allure-adapter@latest",
"update:adapter:gherkin": "cd examples/cypress-js-gherkin && npm install @mmisty/cypress-allure-adapter@latest",
"update:cypress:js": "cd examples/cypress-js && npm install cypress@latest",
"update:cypress:ts": "cd examples/cypress-ts && npm install cypress@latest",
"update:cypress:gherkin": "cd examples/cypress-js-gherkin && npm install cypress@latest",
"update:adapter": "npm run update:adapter:js && npm run update:adapter:ts && npm run update:adapter:gherkin",
"update:cypress": "npm run update:cypress:js && npm run update:cypress:ts && npm run update:cypress:gherkin",
"install:packages:js": "cd examples/cypress-js && npm i ",
"install:packages:gherkin": "cd examples/cypress-js-gherkin && npm i",
"install:packages:ts": "cd examples/cypress-ts && npm i",
"install:all": "npm run install:packages:js && npm run install:packages:ts && npm run install:packages:gherkin",
"build": "cd examples/cypress-ts && npm run build",
"cy:js": "cd examples/cypress-js && npm run cy:run || true && npm run cp",
"cy:gherkin": "cd examples/cypress-js-gherkin && npm run cy:run || true && npm run cp",
"cy:ts": "cd examples/cypress-ts && npm run cy:run || true && npm run cp",
"cy:all": "rm -rf allure-results allure-report && npm run cy:js || true && npm run cy:gherkin || true && npm run cy:ts || true",
"report:open": "allure serve",
"report:generate": "allure generate",
"cy:run:with:report": "(npm run cy:all || true) && npm run report:open",
"pages:update": "(npm run cy:all || true) && mv -f docs/history allure-results/history || true && npm run report:generate -- --clean && rm -rf docs && cp -R allure-report docs",
"pages:build:and:update": "npm run build && npm run pages:update",
"report:history": "mv -f docs/history allure-results/history && rm -r allure-report || true",
"report": "npm run report:open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmisty/cypress-grep-example.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mmisty/cypress-allure-adapter-example/issues"
},
"homepage": "https://github.com/mmisty/cypress-allure-adapter-example#readme",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"volta": {
"node": "18.12.0",
"npm": "8.19.2"
},
"dependencies": {
"allure-commandline": "^2.29.0"
}
}