-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"author": "Christian Bromann <[email protected]>",
"version": "2.3.4",
"license": "MIT",
"homepage": "https://github.com/saucelabs/sauce-connect-action#readme",
"bugs": {
"url": "https://github.com/saucelabs/sauce-connect-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saucelabs/sauce-connect-action.git"
},
"keywords": [
"sauce",
"connect",
"proxy",
"saucelabs"
],
"scripts": {
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"build": "ncc build src/main.ts -o dist/main && ncc build src/post.ts -o dist/post",
"test": "run-p test:*",
"test:run": "node ./test/test.js",
"test:setup": "http-server ./test -p 8080 > /dev/null 2>&1 &",
"test:mocha": "mocha -r ts-node/register test/**/*.test.ts",
"coverage": "nyc -r lcov -e .ts -x \"*.test.ts\" npm run test",
"all": "npm run build && npm run format && npm run lint && npm run coverage"
},
"devDependencies": {
"@types/mocha": "^8.2.3",
"@types/node": "^14.18.63",
"@typescript-eslint/parser": "^7.14.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^5.0.1",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"js-yaml": "^3.14.1",
"mocha": "^10.5.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"ts-node": "^10.3.0",
"typescript": "^5.5.2",
"webdriverio": "^8.39.0"
},
"engines": {
"npm": ">10.8.0",
"node": ">20.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
}
}