-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.24 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@cuppet/core",
"version": "3.1.1",
"description": "Core testing framework components for Cuppet - BDD framework based on Cucumber and Puppeteer",
"main": "index.js",
"files": [
"src/",
"features/",
"index.js",
"stepDefinitions.js",
"postinstall.js"
],
"keywords": [
"testing",
"bdd",
"cucumber",
"puppeteer",
"appium",
"mqtt",
"iot",
"automation",
"e2e"
],
"author": "Miroslav Rusev",
"license": "ISC",
"peerDependencies": {
"@cucumber/cucumber": "^13.0.0",
"config": "^4.1.0"
},
"dependencies": {
"@supercharge/strings": "^2.0.0",
"@wdio/globals": "9.27.2",
"appium-uiautomator2-driver": "7.2.2",
"axios": "^1.17.0",
"chai": "6.2.2",
"kafkajs": "^2.2.4",
"lighthouse": "^13.4.0",
"mime": "^4.1.0",
"mime-types": "^3.0.2",
"moment": "^2.30.1",
"mqtt": "^5.11.3",
"pa11y": "^9.1.0",
"pa11y-reporter-html": "^2.0.0",
"puppeteer": "^25.0.1",
"uuid": "^14.0.0",
"webdriverio": "9.27.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@cucumber/cucumber": "^12.6.0",
"@html-eslint/eslint-plugin": "^0.54.2",
"@html-eslint/parser": "^0.54.0",
"config": "^4.2.0",
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.1"
},
"scripts": {
"test": "cucumber-js features/tests/example.feature",
"run:kafka": "cucumber-js features/tests/example-kafka.feature",
"run:pa11y": "cucumber-js features/tests/example-pa11y.feature",
"run:lighthouse": "cucumber-js features/tests/example-lighthouse.feature",
"run:mqtt": "cucumber-js features/tests/example-mqtt.feature",
"run:mobile": "cucumber-js features/tests/example-mobile.feature",
"postinstall": "node postinstall.js",
"lint:check": "eslint .",
"format:check": "prettier --check .",
"format": "eslint . --fix && prettier --write .",
"verify": "yarn lint:check && yarn format:check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MiroslavRusev/cuppet-core.git"
},
"bugs": {
"url": "https://github.com/MiroslavRusev/cuppet-core/issues"
},
"homepage": "https://github.com/MiroslavRusev/cuppet-core#readme"
}