-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.22 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
{
"name": "selenium-javascript-test",
"version": "1.0.0",
"description": "selenium js based test automation framework",
"main": "index.js",
"scripts": {
"test": "mocha",
"smoke": "mocha --grep '@smoke'",
"docker:start": "docker compose -f docker-compose.yml up -d",
"docker:start:arm": "docker compose -f docker-compose-arm.yml up -d",
"docker:stop": "docker compose -f docker-compose.yml down",
"docker:stop:arm": "docker compose -f docker-compose-arm.yml down",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky"
},
"keywords": [
"Selenium",
"JavaScript",
"MochaJs",
"ChaiJs"
],
"author": "Mohammad Sadab Saqib",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.1.1",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/mochawesome": "^6.2.4",
"@types/selenium-webdriver": "^4.1.22",
"chai": "^4.3.6",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"mochawesome": "^7.1.3",
"selenium-webdriver": "^4.20.0",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.1",
"typescript": "^4.9.5",
"typescript-eslint": "^7.7.1"
}
}