UNPKG

2.28 kBJSONView Raw
1{
2 "name": "geckodriver",
3 "version": "4.0.0",
4 "description": "Mozilla's Geckodriver for Node.js",
5 "homepage": "https://github.com/webdriverio-community/node-geckodriver#readme",
6 "author": {
7 "name": "vladikoff",
8 "email": "vlad.filippov@gmail.com",
9 "url": "http://vf.io"
10 },
11 "license": "MPL-2.0",
12 "keywords": [
13 "geckodriver",
14 "webdriver"
15 ],
16 "repository": {
17 "type": "git",
18 "url": "git+https://github.com/webdriverio-community/node-geckodriver.git"
19 },
20 "scripts": {
21 "build": "tsc -b .",
22 "clean": "rimraf ./node_modules package-lock.yaml ./dist",
23 "prepare": "husky install",
24 "postinstall": "test -f ./dist/install.js && node ./dist/install.js || echo \"Skipping install, project not build!\"",
25 "test": "run-s test:*",
26 "test:lint": "eslint",
27 "test:unit": "vitest --run",
28 "test:e2e": "node ./tests/test.e2e.js",
29 "watch": "npm run build -- --watch"
30 },
31 "engines": {
32 "node": "^16.13 || >=18 || >=20"
33 },
34 "type": "module",
35 "types": "./dist/index.d.ts",
36 "main": "./dist/cjs/index.js",
37 "exports": {
38 ".": [
39 {
40 "types": "./dist/index.d.ts",
41 "import": "./dist/index.js",
42 "require": "./dist/cjs/index.js"
43 },
44 "./dist/cjs/index.js"
45 ]
46 },
47 "bin": {
48 "geckodriver": "./bin/geckodriver"
49 },
50 "bugs": {
51 "url": "https://github.com/webdriverio-community/node-geckodriver/issues"
52 },
53 "devDependencies": {
54 "@types/node": "^20.1.5",
55 "@types/tar-fs": "^2.0.1",
56 "@types/unzipper": "^0.10.6",
57 "@typescript-eslint/eslint-plugin": "^5.59.6",
58 "@typescript-eslint/parser": "^5.59.6",
59 "@vitest/coverage-c8": "^0.31.0",
60 "eslint": "^8.40.0",
61 "eslint-plugin-import": "^2.27.5",
62 "eslint-plugin-unicorn": "^47.0.0",
63 "husky": "^8.0.3",
64 "npm-run-all": "^4.1.5",
65 "octokit": "^2.0.14",
66 "release-it": "^15.10.3",
67 "ts-node": "^10.9.1",
68 "typescript": "^5.0.4",
69 "vitest": "^0.31.0",
70 "wait-port": "^1.0.4",
71 "webdriverio": "^8.10.2"
72 },
73 "dependencies": {
74 "@wdio/logger": "^8.6.6",
75 "decamelize": "^6.0.0",
76 "http-proxy-agent": "^6.0.1",
77 "https-proxy-agent": "^6.1.0",
78 "node-fetch": "^3.3.1",
79 "tar-fs": "^2.1.1",
80 "unzipper": "^0.10.14",
81 "which": "^3.0.1"
82 }
83}