forked from test-results-reporter/testbeats
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.28 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": "test-results-reporter",
"version": "1.0.8",
"description": "Publish test results to Microsoft Teams, Google Chat and Slack",
"main": "src/index.js",
"types": "./src/index.d.ts",
"bin": {
"test-results-reporter": "src/cli.js"
},
"files": [
"/src"
],
"scripts": {
"test": "mocha test",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"build": "pkg --out-path dist ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/test-results-reporter/reporter.git"
},
"keywords": [
"test",
"results",
"publish",
"report",
"microsoft teams",
"teams",
"slack",
"junit",
"mocha",
"cucumber",
"testng",
"xunit",
"reportportal",
"google chat",
"chat"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/test-results-reporter/reporter/issues"
},
"homepage": "https://test-results-reporter.github.io",
"dependencies": {
"async-retry": "^1.3.3",
"dotenv": "^14.3.0",
"phin-retry": "^1.0.3",
"pretty-ms": "^7.0.0",
"rosters": "0.0.1",
"sade": "^1.7.4",
"test-results-parser": "^0.1.0"
},
"devDependencies": {
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pactum": "^3.1.10",
"pkg": "^5.8.0"
}
}