-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 1.95 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
{
"name": "grunt-chromedriver",
"description": "Controls Chrome or Chromium using the WebDriver interface via chromedriver without Selenium.",
"version": "3.0.0",
"homepage": "https://github.com/prantlf/grunt-chromedriver#readme",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/grunt-chromedriver.git"
},
"bugs": {
"url": "https://github.com/prantlf/grunt-chromedriver/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/grunt-chromedriver/blob/master/LICENSE"
}
],
"engines": {
"node": ">=10"
},
"files": [
"tasks"
],
"scripts": {
"lint": "denolint",
"check": "grunt",
"test": "denolint && c8 grunt"
},
"c8": {
"include": [
"tasks"
],
"check-coverage": true,
"reporter": [
"text",
"lcov"
],
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"failComment": false
}
],
"@semantic-release/git"
]
},
"dependencies": {
"chromedriver": "^112",
"portscanner": "^2.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"c8": "^7.13.0",
"denolint": "^2.0.9",
"grunt": "^1.6.1",
"grunt-contrib-nodeunit": "^5.0.0",
"tcp-port-used": "^1.0.2",
"webdriverio": "^8.10.0"
},
"peerDependencies": {
"grunt": ">=1.3.0"
},
"keywords": [
"grunt-task",
"gruntplugin",
"testing",
"browser",
"webdriver",
"chromedriver",
"chrome",
"chromium"
]
}