forked from klassijs/klassi-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·118 lines (118 loc) · 3.57 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "klassi-js",
"version": "5.0.0",
"description": "A debuggable Javascript testing framework using webdriverio",
"creator": {
"name": "Larry Goddard",
"email": "[email protected]",
"twitter": "https://twitter.com/larryG_01",
"gitter": "https://gitter.im/klassi-js/klassi-js",
"linkedin": "https://linkedin.com/in/larryg",
"youtube": "https://youtube.com/@LarryG_01"
},
"license": "MIT",
"engines": {
"node": ">=18.6.0",
"yarn": ">=1.22.0"
},
"keywords": [
"api testing",
"bdd",
"lambdatest",
"cucumber-js",
"javascript",
"klassi-js",
"klassijs",
"testing framework",
"test automation",
"webdriverio"
],
"repository": {
"type": "git",
"url": "https://github.com/klassijs/klassi-js.git"
},
"browser": "index.js",
"scripts": {
"pretest": "eslint --ignore-path .gitignore .",
"prepare": "is-ci || husky install",
"lint-branch-name": "yarn run branch-name-lint ./branchnamelinter.config.json",
"changelog": "standard-version --skip.commit --skip.tag",
"changelog:patch": "standard-version --release-as patch --skip.commit --skip.tag",
"changelog:minor": "standard-version --release-as minor --skip.commit --skip.tag",
"changelog:major": "standard-version --release-as major --skip.commit --skip.tag",
"pkgcheck": "yarn install --check-files",
"appium-start": "yarn run appium --log-level info",
"android-local": "node index.js --disableReport --tags @tagName --env android --browser android",
"ios-local": "node index.js --disableReport --tags @tagName --env ios --browser ios",
"dev": "node index.js --disableReport --tags",
"ltlocal": "node --trace-warnings index.js --disableReport --remoteService (SaaS service) --extraSettings"
},
"homepage": "https://github.com/klassijs/klassi-js#readme",
"bugs": {
"url": "https://github.com/klassijs/klassi-js/issues"
},
"nyc": {
"statements": 80,
"branches": 80,
"functions": 80,
"lines": 80,
"include": [
"**/page-objects/**"
],
"exclude": [
"**/features/s3Report.feature"
],
"reporter": [
"html",
"text",
"text-summary"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.271.0",
"@aws-sdk/client-ses": "^3.226.0",
"@aws-sdk/credential-provider-node": "^3.245.0",
"@cucumber/cucumber": "^8.9.0",
"@cucumber/pretty-formatter": "^1.0.0",
"async": "^3.2.4",
"axe-core": "^4.5.2",
"chai": "^4.3.7",
"commander": "^10.0.0",
"cosmiconfig": "^8.0.0",
"cucumber-html-reporter": "https://github.com/klassijs/klassijs-cucumber-html-reporter",
"cucumber-junit": "^1.7.1",
"dotenv": "^16.0.3",
"fs-extra": "^11.1.0",
"merge": "^2.1.1",
"node-resemble-js": "^0.2.0",
"nodemailer": "^6.8.0",
"pactum": "^3.3.1",
"recursive-readdir": "^2.2.3",
"require-dir": "^1.2.0",
"text-files-loader": "^1.0.5",
"utam": "https://github.com/klassijs/utam",
"wdio-utam-service": "https://github.com/klassijs/wdio-utam-service",
"webdriverio": "^8.6.3"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"branch-name-lint": "^2.1.1",
"eslint": "^8.33.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.8.1",
"standard-version": "https://github.com/klassijs/standard-version"
},
"lint-staged": {
"*.js": [
"eslint --quiet --fix"
]
},
"eslintIgnore": [
"dist"
]
}