generated from Idea-Pool/evaluation-js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.26 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.26 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
{
"name": "evaluation-codecept",
"version": "1.0.0",
"description": "This is a test-ware for evaluation of CodeceptJS test automation tool.",
"main": "-",
"scripts": {
"test": "codeceptjs run --steps --plugins allure",
"test-component": "codeceptjs run --grep @angularPage --plugins allure",
"test-dev": "codeceptjs run --grep @current",
"test-parallel": "codeceptjs run-workers 2 --plugins allure",
"lint": "eslint tests --fix",
"report": "allure serve output"
},
"repository": {
"type": "git",
"url": "git+https://github.com/szikszail/evaluation-codecept.git"
},
"keywords": [
"Test",
"automation",
"Tool",
"Evaluation",
"JavaScript"
],
"author": "Laszlo Szikszai <sziklaszlo@gmail.com>",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/szikszail/evaluation-codecept/issues"
},
"homepage": "https://github.com/szikszail/evaluation-codecept#readme",
"dependencies": {
"@codeceptjs/helper": "^1.0.2",
"allure-commandline": "^2.13.8",
"codeceptjs": "^3.7.5",
"codeceptjs-chai": "^2.2.0",
"eslint": "^9.31.0",
"eslint-plugin-codeceptjs": "^1.2.0",
"husky": "^4.0.10",
"puppeteer": "^2.1.1"
},
"husky": {
"precommit": "npm run lint"
}
}