-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
91 lines (91 loc) · 3.52 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
{
"name": "@testomatio/reporter",
"version": "1.6.13",
"description": "Testomatio Reporter Client",
"main": "./lib/reporter.js",
"typings": "typings/index.d.ts",
"repository": "git@github.com:testomatio/reporter.git",
"author": "Michael Bodnarchuk <davert@testomat.io>,Koushik Mohan <koushikmohan1996@gmail.com>",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.279.0",
"@aws-sdk/lib-storage": "^3.279.0",
"@octokit/rest": "^19.0.5",
"aws-sdk": "^2.1072.0",
"axios": "^1.6.2",
"axios-retry": "^3.9.1",
"callsite-record": "^4.1.4",
"chalk": "^4.1.0",
"commander": "^12",
"cross-spawn": "^7.0.3",
"csv-writer": "^1.6.0",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"fast-xml-parser": "^4.4.1",
"file-url": "3.0.0",
"filesize": "^10.1.6",
"glob": "^10.3",
"handlebars": "^4.7.8",
"has-flag": "^5.0.1",
"humanize-duration": "^3.27.3",
"is-valid-path": "^0.1.1",
"json-cycle": "^1.3.0",
"lodash.memoize": "^4.1.2",
"lodash.merge": "^4.6.2",
"minimatch": "^9.0.3",
"pretty-ms": "^7.0.1",
"promise-retry": "^2.0.1",
"strip-ansi": "^7.1.0",
"uuid": "^9.0.0"
},
"files": [
"bin",
"lib",
"testcafe"
],
"scripts": {
"clear-exportdir": "rm -rf export/",
"pretty": "npx prettier --check .",
"pretty:fix": "prettier --write .",
"lint": "eslint lib",
"lint:fix": "eslint lib --fix",
"format": "npm run lint:fix && npm run pretty:fix",
"test": "mocha tests/**",
"init": "cd ./tests/adapter/examples/cucumber && npm i",
"test:adapter": "mocha './tests/adapter/index.test.js'",
"test:pipes": "mocha './tests/pipes/*_test.js'",
"test:adapter:jest:example": "jest './tests/adapter/examples/jest/index.test.js' --config='./tests/adapter/examples/jest/jest.config.js'",
"test:adapter:mocha:example": "mocha './tests/adapter/examples/mocha/index.test.js' --config='./tests/adapter/examples/mocha/mocha.config.js'",
"test:adapter:jasmine:example": "./tests/adapter/examples/jasmine/passReporterOpts.sh && jasmine './tests/adapter/examples/jasmine/index.test.js' --reporter=./../../../lib/adapter/jasmine.js",
"test:adapter:codecept:example": "codeceptjs run --config='./tests/adapter/examples/codecept/codecept.conf.js'",
"test:adapter:cucumber:example": "cd ./tests/adapter/examples/cucumber && npx cucumber-js",
"test:adapter:vitest:example": "vitest --config='./tests/adapter/examples/vitest/vitest.config.js'",
"test:storage": "npx mocha tests-storage/artifact-storage.test.js && npx mocha tests-storage/data-storage.test.js && TESTOMATIO_INTERCEPT_CONSOLE_LOGS=true npx mocha tests-storage/logger.test.js && npx mocha tests-storage/logger-2.test.js && npx mocha tests-storage/reporter-functions.test.js"
},
"devDependencies": {
"@cucumber/cucumber": "^9.3.0",
"@redocly/cli": "^1.0.0-beta.125",
"@wdio/reporter": "^7.16.13",
"chai": "^4.3.6",
"codeceptjs": "^3.5.11",
"cucumber": "^6.0.7",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"jasmine": "^3.10.0",
"jest": "^27.4.7",
"jsdom": "^22.1.0",
"mocha": "^9.2.0",
"mock-http-server": "^1.4.5",
"pino": "^8.15.0",
"prettier": "^3.2.5",
"puppeteer": "^22.15.0"
},
"bin": {
"@testomatio/reporter": "./lib/bin/cli.js",
"report-xml": "./lib/bin/reportXml.js",
"start-test-run": "./lib/bin/startTest.js",
"upload-artifacts": "./lib/bin/uploadArtifacts.js"
}
}