-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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
{
"name": "mocha-chai-typescript",
"version": "1.0.0",
"description": "This is Test Automation framework designed using Mocha, Chai, and Typescript",
"dependencies": {
"chai": "^6.2.2",
"mocha": "^11.7.5",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"devDependencies": {
"@angular/compiler": "^21.1.5",
"@angular/core": "^21.1.5",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"codelyzer": "^6.0.2",
"mochawesome": "^7.1.4",
"npm-check-updates": "^19.4.1",
"rimraf": "^6.1.3",
"rxjs": "^7.8.2",
"tslint": "^6.1.3",
"typings": "^2.1.1",
"zone.js": "^0.16.1"
},
"scripts": {
"clean": "rimraf temp/ && rimraf test-results/",
"pretest": "npm run clean",
"test": "mocha -r ts-node/register test-suites/*.spec.ts --reporter mochawesome --reporter-options reportDir=test-results"
},
"keywords": [
"mocha",
"chai",
"typescript",
"javascript",
"angular",
"angularjs",
"vscode",
"testing",
"selenium",
"webdriverJS",
"automation testing",
"BDD"
],
"author": "Code with MMAK",
"license": "MIT"
}