-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
67 lines (67 loc) · 2.24 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@shelex/cypress-allure-plugin",
"version": "0.0.0-development",
"description": "allure reporting plugin for cypress",
"main": "reporter/index.js",
"types": "reporter/index.d.ts",
"license": "Apache-2.0",
"author": {
"name": "Oleksandr Shevtsov",
"email": "ovr.shevtsov@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Shelex/cypress-allure-plugin.git"
},
"files": [
"reporter",
"writer",
"writer.js",
"writer.d.ts"
],
"bugs": "https://github.com/Shelex/cypress-allure-plugin/issues",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"cypress",
"allure",
"allure2",
"reporter"
],
"scripts": {
"semantic-release": "semantic-release",
"test": "npx cypress run --config specPattern=cypress/e2e/results/*.cy.js,video=false",
"test:debug": "npx cypress open --config specPattern=cypress/e2e/results/*.cy.js,video=false",
"test:prepare:basic": "DEBUG=allure-plugin* node cypress/scripts/runner basic",
"test:prepare:statuses": "DEBUG=allure-plugin* node cypress/scripts/runner statuses",
"test:prepare:cucumber": "DEBUG=allure-plugin* node cypress/scripts/runner cucumber",
"fixtures:clear": "rm -r cypress/fixtures/*",
"lint": "npx eslint ."
},
"dependencies": {
"@shelex/allure-js-commons-browser": "1.5.0",
"crypto-js": "4.2.0",
"debug": "4.3.4",
"object-inspect": "1.13.1",
"path-browserify": "1.0.1",
"uuid": "9.0.1"
},
"devDependencies": {
"@badeball/cypress-cucumber-preprocessor": "17.0.0",
"@cypress/webpack-preprocessor": "5.17.1",
"@types/mocha": "7.0.2",
"cypress": "12.11.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-chai-friendly": "0.7.2",
"eslint-plugin-cypress": "2.12.1",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.3",
"semantic-release": "22.0.8"
},
"cypress-cucumber-preprocessor": {
"nonGlobalStepDefinitions": true,
"stepDefinitions": "cypress/e2e/cucumber"
}
}