-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.29 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": "@sitespeed.io/geckodriver",
"version": "0.35.0-1",
"geckodriver_version": "0.35.0",
"description": "Install and launch Geckodriver for Mac, Linux or Windows.",
"main": "index.js",
"files": [
"index.js",
"install.js",
"package.json",
"npm-shrinkwrap.json",
"README.md"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"install": "node install.js",
"test": "node test.js",
"check-latest": "node ./check-latest.js"
},
"keywords": [
"webdriver",
"geckodriver",
"firefox"
],
"author": "Tobias Lidskog <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/sitespeedio/geckodriver.git"
},
"license": "MIT",
"dependencies": {
"node-downloader-helper": "2.1.5",
"node-stream-zip": "1.15.0",
"tar": "6.1.13"
},
"devDependencies": {
"eslint": "5.10.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-prettier": "3.0.0",
"prettier": "1.15.3",
"request": "2.88.0",
"semver": "5.6.0",
"toml": "2.3.3"
},
"bugs": {
"url": "https://github.com/sitespeedio/geckodriver/issues"
},
"homepage": "https://github.com/sitespeedio/geckodriver#readme"
}