generated from christian-bromann/typescript-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
60 lines (60 loc) · 1.71 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
{
"name": "create-wdio",
"version": "8.4.10",
"description": "Install and setup a WebdriverIO project with all its dependencies in a single run",
"author": "Christian Bromann <mail@bromann.dev>",
"license": "MIT",
"homepage": "https://github.com/webdriverio/create-wdio#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/create-wdio.git"
},
"bugs": {
"url": "https://github.com/webdriverio/create-wdio/issues"
},
"keywords": [
"webdriverio",
"create-wdio",
"wdio",
"installer",
"e2e"
],
"bin": {
"create-wdio": "./bin/wdio.js"
},
"type": "module",
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf tsconfig.tsbuildinfo ./build ./coverage",
"compile": "tsc -p ./tsconfig.json",
"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 build test:*",
"test:lint": "eslint .",
"test:unit": "vitest run",
"watch": "npm run compile -- --watch",
"watch:test": "vitest watch"
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.0.0",
"@types/semver": "^7.5.8",
"@vitest/coverage-v8": "^2.0.5",
"@wdio/eslint": "^0.0.3",
"eslint": "^9.13.0",
"npm-run-all": "^4.1.5",
"release-it": "^17.6.0",
"typescript": "^5.6.3",
"vitest": "^2.0.5"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"cross-spawn": "^7.0.3",
"import-meta-resolve": "^4.1.0",
"semver": "^7.6.3"
}
}