-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "wdio-nuxt-service",
"version": "1.0.1",
"description": "This service helps you to launch your application when using Nuxt.",
"author": "Christian Bromann <mail@bromann.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-nuxt-service/issues"
},
"homepage": "https://github.com/webdriverio-community/wdio-nuxt-service#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-nuxt-service.git"
},
"keywords": [
"wdio",
"wdio-service",
"vue",
"nuxt",
"webdriverio"
],
"main": "./dist/cjs/index.js",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": [
{
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/cjs/index.js"
]
},
"types": "./dist/index.d.ts",
"typeScriptVersion": "3.8.3",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "tsc -b .",
"ci": "run-s lint build test",
"clean": "rimraf ./node_modules package-lock.yaml ./dist",
"example:build": "cd example && npm run build",
"example:start": "cd example && npm run dev",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:e2e": "cd example && npx wdio run ./wdio.conf.ts",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@types/mocha": "^10.0.9",
"@types/node": "^20.14.8",
"@wdio/eslint": "^0.0.5",
"eslint": "^9.14.0",
"husky": "^9.1.6",
"npm-run-all2": "^7.0.1",
"release-it": "^17.10.0",
"rimraf": "^6.0.1",
"typescript": "^5.6.3"
},
"dependencies": {
"@nuxt/kit": "^3.13.2",
"@nuxt/schema": "^3.13.2",
"@wdio/logger": "^9.1.3",
"c12": "^2.0.1",
"chokidar": "^4.0.1",
"consola": "^3.2.3",
"get-port": "^7.1.0",
"h3": "^1.13.0",
"listhen": "^1.9.0",
"ohash": "^1.1.4",
"pathe": "^1.1.2",
"perfect-debounce": "^1.0.0",
"ufo": "^1.5.4"
},
"peerDependencies": {
"@wdio/types": ">=9.0.0",
"webdriverio": ">=9.0.0"
},
"peerDependenciesMeta": {
"@wdio/types": {
"optional": true
},
"webdriverio": {
"optional": false
}
}
}