-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "setup-browser",
"version": "0.3.5",
"description": "Set up your GitHub Actions workflow with a specific version of browser",
"main": "dist/index.js",
"scripts": {
"build": "ncc build index.ts -o dist --source-map --license LICENSE",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --fix --ext .ts src/",
"local": "npm run build && node dist/index.js",
"package": "cp action.yml README.md dist/",
"test": ""
},
"keywords": [
"actions",
"node",
"setup",
"chromium",
"chrome",
"firefox",
"edge",
"browser"
],
"author": "Abhimanyu Saharan",
"license": "MIT",
"bugs": {
"url": "https://github.com/abhi1693/setup-browser/issues"
},
"homepage": "https://github.com/abhi1693/setup-browser#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/http-client": "^2.0.1",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.0",
"typescript": "^4.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abhi1693/setup-browser.git"
}
}