-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.25 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"type": "module",
"name": "might-cli",
"version": "4.0.4",
"description": "A no-code solution for performing frontend tests",
"scripts": {
"prepublishOnly": "yarn build",
"dev": "tsc -w -p tsconfig.json",
"build": "rm -rf build && mkdir build && tsc --removeComments -p tsconfig.json"
},
"engines": {
"node": ">=16"
},
"bin": {
"might": "build/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ker0olos/might-cli.git"
},
"author": "Kerolos Zaki",
"license": "MIT",
"bugs": {
"url": "https://github.com/ker0olos/might-cli/issues"
},
"homepage": "https://github.com/ker0olos/might-cli#readme",
"keywords": [
"test",
"testing",
"coverage",
"coverage-reports",
"ui-test",
"ui-testing",
"ui-test-automation",
"ui-testing-automation",
"front-end-test",
"front-end-testing",
"frontend-test-automation",
"frontend-testing-automation",
"end-to-end-test",
"end-to-end-testing",
"end-to-end-test-automation",
"end-to-end-testing-interface"
],
"dependencies": {
"ansi-colors": "^4.1.1",
"convert-source-map": "^1.8.0",
"draftlog": "1.0.12",
"exit": "^0.1.2",
"fs-extra": "^10.1.0",
"is-ci": "^3.0.1",
"istanbul-lib-coverage": "^3.2.0",
"istanbul-lib-report": "^3.0.0",
"istanbul-reports": "^3.1.4",
"jimp": "^0.16.1",
"looks-same": "^7.3.0",
"md5": "^2.3.0",
"might-core": "^1.0.2",
"minimist": "^1.2.6",
"nanomatch": "^1.2.13",
"node-fetch": "^3.2.3",
"p-limit": "^4.0.0",
"playwright": "^1.21.0",
"prompts": "^2.4.2",
"ps-tree": "^1.2.0",
"sanitize-filename": "^1.6.3",
"source-map": "^0.7.3",
"v8-to-istanbul": "^8.1.1"
},
"devDependencies": {
"@types/convert-source-map": "^1.5.2",
"@types/exit": "^0.1.31",
"@types/fs-extra": "^9.0.13",
"@types/is-ci": "^3.0.0",
"@types/istanbul-lib-coverage": "^2.0.4",
"@types/istanbul-lib-report": "^3.0.0",
"@types/md5": "^2.3.2",
"@types/minimist": "^1.2.2",
"@types/node-fetch": "^3.0.3",
"@types/prompts": "^2.0.14",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"typescript": "^4.6.3"
}
}