-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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": "@saucelabs/cypress-plugin",
"version": "3.6.0",
"description": "Sauce Cypress Plugin to report your results directly to Sauce Labs",
"main": "lib/index.js",
"scripts": {
"build": "npx rimraf lib && tsc",
"watch": "tsc -w",
"test": "jest",
"lint": "prettier --check '**/*.{js,ts,mjs,cjs}' && eslint src/ tests/",
"fmt": "prettier --write '**/*.{js,ts,mjs,cjs}'",
"prepare": "husky",
"release": "tsc && release-it --github.release",
"release:ci": "tsc && npm run release -- --ci --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/saucelabs/sauce-cypress-plugin.git"
},
"bugs": {
"url": "https://github.com/saucelabs/sauce-cypress-plugin/issues"
},
"author": "devx <devx@saucelabs.com>",
"files": [
"lib"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@saucelabs/sauce-json-reporter": "4.1.0",
"@saucelabs/testcomposer": "3.0.2",
"axios": "^1.7.5",
"chalk": "^4.1.2",
"cli-table3": "^0.6.5",
"debug": "^4.3.6"
},
"peerDependencies": {
"cypress": ">=13"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@tsconfig/node22": "^22.0.0",
"@types/debug": "^4.1.12",
"@types/eslint__js": "^8.42.3",
"cypress": "^13.14.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"prettier": "3.3.3",
"release-it": "^17.6.0",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"typescript-eslint": "^8.11.0"
}
}