-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.17 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.17 KB
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
{
"name": "berg",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npm run clean && npm run format && npm run compile && npm run resources",
"clean": "npx del \"packages/testsuite/cypress/fixtures/*/\" \"results\" \"mochawesome*\"",
"format": "npx prettier --write .",
"lint": "npx eslint .",
"resources": "npm run resources -w @berg/resources",
"compile": "npx tsc --build",
"preinstall": "npm run clean",
"postinstall": "npm run format && npm run compile && npm run resources",
"pregenerate-report": "npx cpy \"packages/testsuite/cypress/videos/*.mp4\" mochawesome-report/assets/videos",
"generate-report": "npx mochawesome-merge results/packages/testsuite/cypress/e2e/*.json > mochawesome.json && npx marge mochawesome.json -f index.html",
"predevelop": "npm run compile",
"develop": "npm run develop -w @berg/testsuite",
"pretest": "npm run build",
"test": "npm run test -w @berg/testsuite --",
"test:compiled": "npm run test-compiled -w @berg/testsuite --",
"predocs": "npm run compile",
"docs": "npx typedoc"
},
"workspaces": {
"packages": [
"./packages/*"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@cypress/xvfb": "1.2.4",
"@eslint/js": "^10.0.1",
"@types/command-line-args": "5.2.3",
"@types/mochawesome": "6.2.5",
"@types/portscanner": "2.1.4",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"command-line-args": "^6.0.1",
"cpy-cli": "^7.0.0",
"cypress-multi-reporters": "^2.0.5",
"del-cli": "^7.0.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"mocha-junit-reporter": "2.2.1",
"mochawesome": "^7.1.4",
"mochawesome-merge": "^5.0.0",
"mochawesome-report-generator": "^6.3.0",
"prettier": "^3.6.2",
"typedoc": "^0.28.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
},
"dependencies": {
"axios": "1.13.6",
"cypress": "15.11.0",
"portscanner": "^2.2.0",
"testcontainers": "^11.7.1"
},
"overrides": {
"mocha": {
"diff": "^8.0.3",
"serialize-javascript": "^7.0.5"
}
}
}