-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.75 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.75 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
47
{
"name": "testaignite",
"version": "1.0.0",
"description": "AI powered test reporter",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"cy:open": "cypress open",
"cy:run": "cypress run --browser chrome",
"report:json": "echo 'json reports will be created as part of cypress run'",
"clean:reports": "node -e \"require('fs').rmSync('cypress/reports', { recursive: true, force: true });\"",
"report:ai": "npx testaignite report:ai",
"report:html": "npx testaignite report:html",
"report:full": "npm run clean:reports && npm run cy:run || node -e \"process.exit(0)\" && npx testaignite report:full",
"report:full:all": "node scripts/runAllEnvs.js",
"test:AIgnite": "npm run report:full",
"ai:ignite": "npm run report:ai",
"report:open": "start cypress/reports/html/testaignite-report.html",
"report:metrics": "node scripts/generateMetrics.js && node scripts/renderCharts.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sphinx010/testAIgnite.git"
},
"author": "Ayooluwa Paul Obembe",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/sphinx010/testAIgnite/issues"
},
"homepage": "https://github.com/sphinx010/testAIgnite#readme",
"devDependencies": {
"@huggingface/inference": "^4.13.10",
"axios": "^1.13.3",
"chart.js": "^4.5.1",
"cypress": "^15.10.0",
"cypress-mochawesome-reporter": "^4.0.2",
"eslint": "^9.39.2",
"eslint-plugin-cypress": "^5.2.1",
"glob": "^13.0.0",
"handlebars": "^4.7.8",
"lodash": "^4.17.23",
"mochawesome": "^7.1.4",
"testaignite-reporter": "github:sphinx010/testAignite_"
}
}