-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
51 lines (51 loc) · 1.43 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": "setup-geckodriver",
"version": "0.0.0",
"description": "Set up your GitHub Actions workflow with a specific version of geckodriver",
"main": "dist/index.js",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.33.0",
"@vercel/ncc": "^0.26.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"prettier": "^2.8.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"scripts": {
"build": "ncc build src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"package": "cp action.yml README.md dist/",
"lint": "eslint --ext .ts src/ __test__/",
"lint:fix": "eslint --fix --ext .ts src/ __test__/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/browser-actions/setup-geckodriver.git"
},
"keywords": [
"actions",
"node",
"setup",
"geckodriver"
],
"author": "Shin'ya Ueoka",
"license": "MIT",
"bugs": {
"url": "https://github.com/browser-actions/setup-geckodriver/issues"
},
"homepage": "https://github.com/browser-actions/setup-geckodriver#readme"
}