@eclipse-che/che-e2e 7.74.0-dev-715064a → 7.75.0-dev-cf03445
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +60 -59
package/package.json
CHANGED
|
@@ -1,61 +1,62 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@eclipse-che/che-e2e",
|
|
3
|
+
"version": "7.75.0-dev-cf03445",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"lint": "eslint --fix .",
|
|
8
|
+
"prettier": "prettier --config .prettierrc.json . --write",
|
|
9
|
+
"tsc": "rm -rf ./dist && ./configs/sh-scripts/generateIndex.sh && tsc -p .",
|
|
10
|
+
"test": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export USERSTORY=$USERSTORY && mocha --config dist/configs/mocharc.js",
|
|
11
|
+
"driver-less-test": "export TS_USE_WEB_DRIVER_FOR_TEST=false && npm run test",
|
|
12
|
+
"cleanup-docker": "if [ $(docker ps -a | grep -c selenium-e2e) -gt 0 ]; then docker rm -f $(docker ps --filter \"name=selenium-e2e\" -aq); fi;",
|
|
13
|
+
"test-docker": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL eclipse/che-e2e:nightly",
|
|
14
|
+
"test-docker-mount-e2e": "npm run cleanup-docker && docker run -it --shm-size=2g -p 5920:5920 --name selenium-e2e -e TS_SELENIUM_BASE_URL=$TS_SELENIUM_BASE_URL -v $(pwd):/tmp/e2e:Z eclipse/che-e2e:nightly",
|
|
15
|
+
"test-all-devfiles": " ./configs/sh-scripts/initDefaultValues.sh && ./configs/sh-scripts/initDevfileTests.sh",
|
|
16
|
+
"devfile-acceptance-test-suite": "./configs/sh-scripts/initDefaultValues.sh npm run lint && npm run tsc && export TS_USE_WEB_DRIVER_FOR_TEST=false && mocha 'dist/specs/api/*.js' --config dist/configs/mocharc.js --delay --grep 'Devfile acceptance test suite'"
|
|
17
|
+
},
|
|
18
|
+
"author": "Ihor Okhrimenko (iokhrime@redhat.com)",
|
|
19
|
+
"license": "ISC",
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@eclipse-che/che-devworkspace-generator": "next",
|
|
22
|
+
"@types/chai": "^4.3.4",
|
|
23
|
+
"@types/clone-deep": "^4.0.1",
|
|
24
|
+
"@types/mocha": "5.2.6",
|
|
25
|
+
"@types/node": "11.13.4",
|
|
26
|
+
"@types/rimraf": "2.0.2",
|
|
27
|
+
"@types/selenium-webdriver": "4.1.3",
|
|
28
|
+
"@types/shelljs": "^0.8.11",
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^6.4.1",
|
|
30
|
+
"@typescript-eslint/eslint-plugin-tslint": "^6.1.0",
|
|
31
|
+
"@typescript-eslint/parser": "^6.1.0",
|
|
32
|
+
"axios": "^0.25.0",
|
|
33
|
+
"chai": "^4.3.4",
|
|
34
|
+
"chromedriver": "^114.0.2",
|
|
35
|
+
"clone-deep": "^4.0.1",
|
|
36
|
+
"eslint": "^8.45.0",
|
|
37
|
+
"eslint-config-prettier": "^8.10.0",
|
|
38
|
+
"eslint-plugin-header": "^3.1.1",
|
|
39
|
+
"eslint-plugin-jsdoc": "^46.5.0",
|
|
40
|
+
"eslint-plugin-prettier": "^5.0.0",
|
|
41
|
+
"husky": "^8.0.3",
|
|
42
|
+
"mocha": "^9.1.3",
|
|
43
|
+
"monaco-page-objects": "3.1.0",
|
|
44
|
+
"prettier": "^3.0.2",
|
|
45
|
+
"rimraf": "2.6.2",
|
|
46
|
+
"selenium-webdriver": "4.4.0",
|
|
47
|
+
"shelljs": "^0.8.5",
|
|
48
|
+
"ts-node": "^10.9.1",
|
|
49
|
+
"typescript": "4.9.4",
|
|
50
|
+
"vscode-extension-tester-locators": "3.1.0",
|
|
51
|
+
"yaml": "^2.2.2"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@eclipse-che/api": "latest",
|
|
55
|
+
"inversify": "6.0.1",
|
|
56
|
+
"reflect-metadata": "0.1.13",
|
|
57
|
+
"@eclipse-che/che-devworkspace-generator": "7.75.0-SNAPSHOT"
|
|
58
|
+
},
|
|
59
|
+
"resolutions": {
|
|
60
|
+
"minimist": "^1.2.5"
|
|
61
|
+
}
|
|
61
62
|
}
|