-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
72 lines (72 loc) · 1.56 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
{
"name": "testbeats",
"version": "2.1.6",
"description": "Publish test results to Microsoft Teams, Google Chat, Slack and InfluxDB",
"main": "src/index.js",
"types": "./src/index.d.ts",
"bin": {
"testbeats": "src/cli.js"
},
"files": [
"/src"
],
"scripts": {
"test": "c8 mocha test --reporter mocha-multi-reporters --reporter-options configFile=mocha.report.json",
"build": "pkg --out-path dist ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/test-results-reporter/testbeats.git"
},
"keywords": [
"test",
"results",
"publish",
"report",
"microsoft teams",
"teams",
"slack",
"influx",
"influxdb",
"junit",
"mocha",
"cucumber",
"testng",
"xunit",
"reportportal",
"google chat",
"chat",
"percy",
"jmeter"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/test-results-reporter/testbeats/issues"
},
"homepage": "https://testbeats.com",
"dependencies": {
"async-retry": "^1.3.3",
"dotenv": "^16.4.5",
"form-data-lite": "^1.0.3",
"influxdb-lite": "^1.0.0",
"performance-results-parser": "latest",
"phin-retry": "^1.0.3",
"pretty-ms": "^7.0.1",
"rosters": "0.0.1",
"sade": "^1.8.1",
"test-results-parser": "0.2.5"
},
"devDependencies": {
"c8": "^10.1.2",
"mocha": "^10.7.3",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"pactum": "^3.7.1",
"pkg": "^5.8.1"
},
"engines": {
"node": ">=14.0.0"
},
"engineStrict": true
}