forked from danitseitlin/reportportal-testcafe-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 3.32 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
{
"name": "@redislabs/testcafe-reporter-reportportal-plugin",
"version": "0.1.12",
"private": false,
"description": "Report Portal TestCafe reporter",
"repository": "https://github.com/redislabs/reportportal-testcafe-plugin",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": {
"name": "Redis",
"url": "https://github.com/redislabs"
},
"main": "lib/index",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib",
"test": "mocha -r ts-node/register",
"lint": "eslint .",
"jshint": "jshint src",
"get-report-portal-docker-compose": "curl https://raw.githubusercontent.com/reportportal/reportportal/master/docker-compose.yml -o docker-compose.yml",
"start-report-portal-server": "docker-compose -p reportportal up",
"unlink-pkg": "npm unlink --no-save testcafe-reporter-reportportal-plugin",
"link-pkg": "npm link && npm link testcafe-reporter-reportportal-plugin",
"build-local-reporter": "npm run unlink-pkg && npm run build && npm run link-pkg",
"testcafe-test": "testcafe chrome:headless ./tests/test.testcafe.ts --reporter reportportal-plugin",
"e2e-tests": "npm run test ./tests/test.e2e.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=tmp -g \"Running TestCafe Tests\"",
"e2e-retry-tests": "npm run test ./tests/test.e2e.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=retry -g \"Retry mechanism\"",
"e2e-no-live-reporting-tests": "npm run test ./tests/test.e2e.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=tmp --disable-live-reporting -g \"Running TestCafe Tests\"",
"e2e-display-debug-logs-tests": "npm run test ./tests/test.e2e.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=tmp --display-debug-logs -g \"Running TestCafe Tests\"",
"run-e2e-tests": "npm run build-local-reporter && npm run e2e-tests",
"run-e2e-retry-tests": "npm run build-local-reporter && npm run e2e-retry-tests",
"run-e2e-no-live-reporting-tests": "npm run build-local-reporter && npm run e2e-no-live-reporting-tests",
"run-e2e-display-debug-logs-tests": "npm run build-local-reporter && npm run e2e-display-debug-logs-tests",
"run-full-e2e-tests": "npm run build-local-reporter && npm run e2e-tests && npm run e2e-retry-tests && npm run e2e-no-live-reporting-tests && npm run e2e-display-debug-logs-tests"
},
"keywords": [
"testcafe",
"reporter",
"plugin"
],
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.16.4",
"@babel/preset-env": "^7.3.4",
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.1",
"callsite-record": "^3.2.0",
"chai": "^4.3.3",
"del": "^1.2.0",
"dmock-server": "^1.5.5",
"eslint": "8.2.0",
"jshint": "^2.13.1",
"mocha": "^8.3.0",
"normalize-newline": "^1.0.2",
"read-file-relative": "^1.2.0",
"testcafe": "^1.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.4.4"
},
"dependencies": {
"@babel/runtime": "^7.16.3",
"ansi-to-html": "^0.7.2",
"axios": "^0.21.0",
"cli-argument-parser": "^0.5.9",
"fs": "0.0.1-security",
"to-fast-properties": "^4.0.0"
}
}