-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.12 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
{
"name": "promod",
"version": "2.0.0",
"description": "Library for automation testing",
"bin": "./bin/promod_cli",
"main": "./built/cjs/index.js",
"exports": {
".": {
"require": "./built/cjs/index.js",
"import": "./built/esm/index.js"
}
},
"scripts": {
"pw:install": "playwright install chrome",
"test:pw": "ENGINE=pw mocha $(find specs -name '*.spec.*') --require ts-node/register --timeout 500000",
"test:swd": "ENGINE=swd mocha $(find specs -name '*.spec.*') --require ts-node/register --timeout 500000",
"test:units": "mocha $(find units -name '*.test.*') --require ts-node/register --timeout 500000",
"test:debug": "mocha ./specs/async.child.methods.spec.ts --require ts-node/register --timeout 300000",
"lint": "eslint --ext .ts ./",
"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.git"
},
"author": {
"name": "Potapov Dmytro",
"url": "https://github.com/potapovDim"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Simple-Automation-Testing/promod/issues"
},
"homepage": "https://github.com/Simple-Automation-Testing/promod#readme",
"dependencies": {
"get-port": "5.1.1",
"playwright-core": "^1.49.0",
"selenium-webdriver": "^4.26.0",
"sat-compare": "^0.1.0",
"sat-utils": "^3.0.2",
"sat-wait": "^0.1.0",
"yargs": "^17.6.0"
},
"keywords": [
"promod",
"selenium-webdriver",
"protractor",
"protractor mod",
"test automation",
"selenium",
"automation testing",
"playwright mod"
],
"devDependencies": {
"@types/mocha": "^10.0.8",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"assertior": "^0.0.28",
"chromedriver": "^131.0.1",
"eslint": "^9.11.1",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^10.7.3",
"playwright": "^1.49.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}