-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.41 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
{
"name": "saas_template_automation_solution",
"version": "1.0.0",
"description": "This is a solution for the automation testing for saas-template application.",
"main": "index.js",
"scripts": {
"runTests": "node node_modules/mocha/bin/mocha --opts config/mocha.opts tests/**/*.ts",
"testsParalel": "mocha-parallel-tests --opts config/mocha.opts index.ts tests/*.ts",
"generateReport": "node node_modules/allure-commandline/bin/allure generate --clean",
"openReport": "allure open allure-report",
"test": "npm run runTests || npm run generateReport && npm run openReport"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Roman1137/saas-template-automation.git"
},
"author": "Roman Borodavka",
"license": "ISC",
"bugs": {
"url": "https://github.com/Roman1137/saas-template-automation/issues"
},
"homepage": "https://github.com/Roman1137/saas-template-automation#readme",
"dependencies": {
"@types/chai": "^4.1.7",
"@types/chai-http": "^3.0.5",
"@types/dotenv": "^6.1.0",
"@types/mocha": "^5.2.6",
"allure-commandline": "^2.9.0",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"dotenv": "^6.2.0",
"log4js": "^4.0.2",
"mocha": "^6.0.0-1",
"mocha-allure-reporter": "^1.4.0",
"mocha-multi-reporters": "^1.1.7",
"mocha-parallel-tests": "2.0.1",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.3333"
}
}