-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.22 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.22 KB
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
{
"name": "@sitespeed.io/geckodriver",
"version": "0.36.1",
"geckodriver_version": "0.36.0",
"description": "Install and launch Geckodriver for Mac, Linux or Windows.",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"install.js",
"package.json",
"npm-shrinkwrap.json",
"README.md"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"install": "node install.js",
"test": "node test.js",
"check-latest": "node ./check-latest.js"
},
"keywords": [
"webdriver",
"geckodriver",
"firefox"
],
"author": "Tobias Lidskog <tobias@lidskog.se>",
"repository": {
"type": "git",
"url": "git+https://github.com/sitespeedio/geckodriver.git"
},
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"tar": "7.5.15"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"eslint": "10.4.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unicorn": "64.0.0",
"globals": "17.6.0",
"prettier": "3.8.3"
},
"bugs": {
"url": "https://github.com/sitespeedio/geckodriver/issues"
},
"homepage": "https://github.com/sitespeedio/geckodriver#readme"
}