-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.44 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
{
"name": "test_automation",
"version": "1.0.0",
"description": "Test Automation Project",
"main": "index.js",
"scripts": {
"build": "npm install",
"compile": "npx tsc --build --clean && npx tsc --build",
"lint": "eslint . --ext .ts",
"eslint-fix": "eslint . --ext .ts --fix",
"pretest": "npm run compile && rimraf cucumber-report && mkdirp cucumber-report && mkdirp cucumber-report/screenshots",
"test": "cucumber-js -c resources/cucumber_options_config.json -p ui"
},
"keywords": [
"E2E",
"UI-Test",
"API-Test"
],
"author": "Basker Subramaniyan",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^8.7.0",
"@cucumber/pretty-formatter": "1.0.0",
"@types/chai": "^4.3.3",
"@types/deep-equal-in-any-order": "1.0.1",
"@types/lodash": "4.14.188",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"chai": "4.3.7",
"axios": "1.1.3",
"chai-exclude": "2.1.0",
"class-transformer": "0.5.1",
"deep-equal-in-any-order": "2.0.0",
"devtools": "7.26.0",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"expect": "29.3.1",
"expect-webdriverio": "3.5.2",
"lodash": "4.17.21",
"mkdirp": "1.0.4",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"ts-node": "10.9.1",
"tsconfig-paths": "4.1.0",
"typescript": "^4.8.4",
"webdriverio": "7.26.0"
}
}