-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
45 lines (45 loc) · 1.6 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
{
"name": "skyeye-daily-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"test": "tsc && cross-env NODE_ENV=App mocha --no-timeout 'dist/test' --retries 3 --reporter mocha-junit-reporter --reporter-options mochaFile=./daily-report/daily-test-results.xml",
"test:report": "npx tsc && cross-env NODE_ENV=App mocha --no-timeout 'dist/test' --retries 3 --reporter mochawesome --reporter-options reportDir='./daily-report',reportFilename='daily-test-results',inline=true,autoOpen=false || exit 0",
"report": "npm run test && npm run test:report",
"test1": "tsc && mocha --no-timeout 'dist/test' --retries 3",
"test4": "tsc && cross-env NODE_ENV=App mocha --no-timeout 'dist/test' --retries 4 --reporter json > daily-test-results.json"
},
"node": {
"child_process": "empty"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.6",
"chai": "^4.3.4",
"chromedriver": "^103.0.0",
"mocha": "^8.4.0",
"mocha-github-actions-reporter": "^0.2.4",
"mocha-junit-reporter": "^2.0.0",
"nodemailer": "^6.6.3",
"nyc": "^15.1.0",
"reflect-metadata": "^0.1.13",
"selenium-webdriver": "^4.0.0-beta.3",
"tslint": "^5.4.3",
"typescript": "^4.2.4"
},
"devDependencies": {
"@babel/cli": "^7.13.16",
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/register": "^7.13.16",
"@types/chai": "^4.2.21",
"@types/selenium-webdriver": "^4.0.12",
"cross-env": "^7.0.3",
"mochawesome": "^7.0.1",
"ts-node": "^10.0.0"
}
}