forked from browser-actions/setup-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"name": "setup-chrome",
"version": "0.0.0",
"description": "Set up your GitHub Actions workflow with a specific version of chromium",
"main": "dist/index.js",
"dependencies": {
"@actions/core": "^1.5.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1"
},
"devDependencies": {
"@types/node": "^15.14.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.23.0",
"@vercel/ncc": "^0.31.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^4.3.2"
},
"scripts": {
"build": "ncc build src/index.ts",
"package": "cp action.yml README.md dist/",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --fix --ext .ts src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/browser-actions/setup-chrome.git"
},
"keywords": [
"actions",
"node",
"setup",
"chromium"
],
"author": "Shin'ya Ueoka",
"license": "MIT",
"bugs": {
"url": "https://github.com/browser-actions/setup-chrome/issues"
},
"homepage": "https://github.com/browser-actions/setup-chrome#readme"
}