-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.8 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
52
53
54
55
56
57
58
59
60
61
62
{
"name": "safaridriver",
"version": "1.0.0",
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"description": "An NPM wrapper for handling the Safaridriver binary.",
"homepage": "https://github.com/webdriverio-community/node-safaridriver#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/node-safaridriver.git"
},
"keywords": [
"safari",
"safaridriver",
"webdriver",
"webdriverio",
"selenium"
],
"bugs": {
"url": "https://github.com/webdriverio-community/node-safaridriver/issues"
},
"engines": {
"node": ">=18.0.0"
},
"main": "./dist/cjs/index.js",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": [
{
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/cjs/index.js"
]
},
"types": "./dist/index.d.ts",
"typeScriptVersion": "3.8.3",
"scripts": {
"build": "tsc -b .",
"ci": "run-s lint build test",
"clean": "rimraf ./node_modules package-lock.yaml ./dist",
"prepare": "husky install",
"test": "run-s test:*",
"test:lint": "eslint src tests",
"test:unit": "vitest",
"test:interop": "node ./tests/interop/cjs.test.js",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@types/node": "^22.8.6",
"@vitest/coverage-v8": "^3.0.2",
"@wdio/eslint": "^0.0.5",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"npm-run-all2": "^7.0.1",
"release-it": "^18.0.0",
"typescript": "^5.6.3",
"vitest": "^3.0.2"
}
}