-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "setup-firefox",
"version": "1.5.2",
"description": "Set up your GitHub Actions workflow with a specific version of firefox",
"main": "dist/index.js",
"packageManager": "[email protected]",
"engines": {
"node": "20.6.1"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.6.2",
"@vercel/ncc": "^0.38.0",
"typescript": "^5.2.2",
"vitest": "^2.0.2"
},
"scripts": {
"build": "ncc build src/index.ts",
"test": "vitest",
"package": "cp action.yml README.md dist/",
"lint": "biome ci .",
"lint:fix": "biome check --apply ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/browser-actions/setup-firefox.git"
},
"keywords": [
"actions",
"node",
"setup",
"firefox"
],
"author": "Shin'ya Ueoka",
"license": "MIT",
"bugs": {
"url": "https://github.com/browser-actions/setup-firefox/issues"
},
"homepage": "https://github.com/browser-actions/setup-firefox#readme"
}