-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.77 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.77 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": "promod-system",
"version": "5.0.1",
"description": "Promod System Package",
"bin": "./bin/cli.js",
"main": "./built/cjs/index.js",
"exports": {
".": {
"require": "./built/cjs/index.js",
"import": "./built/esm/index.js"
}
},
"scripts": {
"test": "mocha $(find specs -name '*.spec.*') --require ts-node/register --timeout 500000",
"test:runner": "mocha $(find specs -name '*.test.*') --require ts-node/register --timeout 500000",
"lint": "oxlint --fix",
"tsc:cjs": "tsc -p tsconfig.json",
"tsc:esm": "tsc -p tsconfig.esm.json",
"tsc": "rm -rf ./built && npm run tsc:cjs && npm run tsc:esm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Simple-Automation-Testing/promod-system.git"
},
"author": {
"name": "Potapov Dmytro",
"url": "https://github.com/potapovDim"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Simple-Automation-Testing/promod-system/issues"
},
"homepage": "https://github.com/Simple-Automation-Testing/promod-system#readme",
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/mocha": "^10.0.10",
"@types/node": "^25.2.2",
"assertior": "^0.0.28",
"dayjs": "^1.11.19",
"mocha": "^11.7.5",
"oxlint": "^1.43.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"promod": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"sat-compare": "^0.1.0",
"sat-utils": "^3.2.0",
"sat-wait": "^0.1.6",
"yargs": "18.0.0"
},
"keywords": [
"promod",
"promod-system",
"selenium-webdriver",
"test automation",
"selenium",
"automation testing",
"automation framework",
"wait for conditions"
],
"engines": {
"node": ">=18.20.7"
}
}