-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 3.81 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": "testcafe-reporter-reportportal-plugin",
"version": "0.0.9",
"description": "Report Portal TestCafe reporter",
"repository": "https://github.com/danitseitlin/reportportal-testcafe-plugin",
"author": {
"name": "Dani Tseitlin",
"url": "https://github.com/danitseitlin"
},
"main": "lib/index",
"files": [
"lib"
],
"scripts": {
"build": "babel src -d lib",
"test": "mocha -r ts-node/register",
"lint": "eslint .",
"jshint": "jshint src",
"unlink-pkg": "npm unlink --no-save testcafe-reporter-reportportal-plugin && npm unlink && npm i",
"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",
"unit-tests": "npm run test ./tests/unit/unit.executor.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=tmp -g \"Running TestCafe Tests\"",
"unit-retry-tests": "npm run test ./tests/unit/unit.executor.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=retry -g \"Retry mechanism\"",
"unit-no-live-reporting-tests": "npm run test ./tests/unit/unit.executor.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=tmp --disable-live-reporting -g \"Running TestCafe Tests\"",
"unit-display-debug-logs-tests": "npm run test ./tests/unit/unit.executor.ts -- --rprotocol=http --rdomain=localhost:1234 --rlaunch-id=113 --rtoken=fff --rproject=tmp --display-debug-logs -g \"Running TestCafe Tests\"",
"run-unit-tests": "npm run build-local-reporter && npm run unit-tests",
"run-unit-retry-tests": "npm run build-local-reporter && npm run unit-retry-tests",
"run-unit-no-live-reporting-tests": "npm run build-local-reporter && npm run unit-no-live-reporting-tests",
"run-unit-display-debug-logs-tests": "npm run build-local-reporter && npm run unit-display-debug-logs-tests",
"run-full-unit-tests": "npm run build-local-reporter && npm run unit-tests && npm run unit-retry-tests && npm run unit-no-live-reporting-tests && npm run unit-display-debug-logs-tests",
"integration-tests": "npm run test ./tests/integration/integration.executor.ts -- --display-debug-logs",
"run-integration-tests": "npm run build-local-reporter && npm run integration-tests",
"download-report-portal-docker-compose-file": "curl https://raw.githubusercontent.com/reportportal/reportportal/a9f2fe18dfe9cb2a631d8a60fdbe254ced6963e7/docker-compose.yml -o docker-compose.yml",
"download-report-portal-latest-docker-compose-file": "curl https://raw.githubusercontent.com/reportportal/reportportal/master/docker-compose.yml -o docker-compose.yml",
"up": "docker compose -p reportportal up",
"start": "docker compose -p reportportal start",
"stop": "docker compose -p reportportal stop",
"down": "docker compose -p reportportal down",
"status": "docker compose -p reportportal ps -a"
},
"keywords": [
"testcafe",
"reporter",
"plugin"
],
"license": "Apache 2",
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/eslint-parser": "^7.16.0",
"@babel/plugin-transform-runtime": "^7.3.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.5.0",
"jshint": "^2.13.4",
"mocha": "^9.2.0",
"normalize-newline": "^1.0.2",
"read-file-relative": "^1.2.0",
"testcafe": "2.3.1",
"ts-node": "^9.1.1",
"typescript": "^4.4.4"
},
"dependencies": {
"axios": "^0.21.2",
"cli-argument-parser": "^0.5.9",
"fs": "0.0.1-security"
}
}