-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "wdio-slack-service",
"version": "2.0.8",
"description": "WebdriverIO service for Slack Integration",
"author": "Carmen Mitru <[email protected]>",
"homepage": "https://github.com/carmenmitru/wdio-slack-service",
"license": "MIT",
"main": "src/index.js",
"bin": "src/index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"build": "run-s clean compile",
"clean": "rimraf ./build",
"compile": "babel src/ -d build/ --config-file ../../babel.config.js",
"test": "run-s test:*",
"test:eslint": "eslint src test",
"test:unit": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/carmenmitru/wdio-slack-service.git"
},
"keywords": [
"webdriverio",
"wdio",
"slack",
"wdio-service"
],
"bugs": {
"url": "https://github.com/carmenmitru/wdio-slack-service/issues"
},
"dependencies": {
"@slack/webhook": "^6.0.0",
"@wdio/cli": "^7.5.7",
"rimraf": "^3.0.0"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"Carmen Mitru <[email protected]>",
"Vinod Reddy <[email protected]>"
]
}