-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.48 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
{
"name": "saucectl-run-action",
"version": "0.1.0",
"description": "A GitHub actions providing control of saucectl",
"main": "src/index.js",
"scripts": {
"build": "ncc build src/index.js --license licenses.txt -o dist/main",
"test": "npx jest --forceExit",
"lint": "prettier --check '**/*.{js,ts,mjs,cjs}' && eslint src/ tests/",
"fmt": "prettier --write '**/*.{js,ts,mjs,cjs}'",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saucectl/saucectl-run-action.git"
},
"author": "devx@saucelabs.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/saucectl/saucectl-run-action/issues"
},
"homepage": "https://github.com/saucectl/saucectl-run-action#readme",
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.1",
"@octokit/action": "^7.0.0",
"@octokit/auth-action": "^4.0.1",
"@octokit/rest": "^20.1.1",
"semver": "^7.6.2"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"@octokit/fixtures": "^23.1.1",
"@types/jest": "^29.5.12",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.4.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"prettier": "^3.3.1",
"typescript-eslint": "^7.13.0"
}
}