-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 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
{
"name": "cuppet-project",
"version": "1.1.1",
"description": "A comprehensive end-to-end testing tool using the Cuppet framework based on Cucumber.js,Puppeteer and Appium, supporting web and mobile automation.",
"main": "cucumber.js",
"scripts": {
"verbose": "cucumber-js -f @cucumber/pretty-formatter",
"test": "cucumber-js",
"postinstall": "node ./post-install.js",
"lint:check": "eslint .",
"format:check": "prettier --check .",
"format": "eslint . --fix && prettier --write .",
"verify": "yarn lint:check && yarn format:check",
"prepare": "husky",
"lint-staged": "lint-staged"
},
"keywords": [
"testing",
"automation",
"cucumber",
"cuppet",
"e2e",
"bdd",
"appium",
"selenium",
"gherkin"
],
"author": "mrusev",
"license": "Apache-2.0",
"dependencies": {
"@cuppet/core": "^3.0.1",
"@cucumber/cucumber": "^12.6.0",
"config": "^4.2.1"
},
"devDependencies": {
"@cucumber/messages": "*",
"@cucumber/pretty-formatter": "^3.0.0",
"eslint": "^10.0.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@types/vscode": "^1.109.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.0",
"prettier": "3.8.1"
},
"lint-staged": {
"*.{js,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": "prettier --write"
}
}