-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.66 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.66 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
{
"name": "process-rerun",
"version": "1.0.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": "eslint --ext .ts ./ --fix"
},
"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": {
"@types/mocha": "^9.1.1",
"@types/node": "^22.14.1",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"assertior": "0.0.11",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.2.9",
"eslint-plugin-no-only-tests": "^2.6.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-sonarjs": "^0.13.0",
"eslint-plugin-unicorn": "^42.0.0",
"mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tslint": "^5.9.1",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=19.22.0"
},
"dependencies": {
"sat-utils": "0.0.49"
}
}