-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.35 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
{
"name": "process-rerun",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/potapovDim/protractor-rerun.git"
},
"main": "./built/cjs/index.js",
"exports": {
".": {
"require": "./built/cjs/index.js",
"import": "./built/esm/index.js"
}
},
"scripts": {
"tscw": "tsc -w",
"validate": "npm ls",
"test": "mocha $(find specs -name '*.spec.*') --timeout 500000 --require ts-node/register",
"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",
"lint": "biome lint --write ./",
"format": "biome format --write ./",
"check": "biome check --write ./"
},
"author": {
"name": "Dmytro Potapov",
"email": "potapovd3012@gmail.com"
},
"license": "MIT",
"keywords": [
"flaky",
"flaky-tests",
"flaky-processes",
"protractor",
"selenium",
"rerun",
"failed-tests",
"protractor-rerun",
"parallel execution",
"parallel processes"
],
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"assertior": "0.0.28",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"sat-utils": "3.3.0"
}
}