-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 933 Bytes
/
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
{
"name": "e2e-tests-spectron-example",
"version": "1.0.0",
"description": "E2E tests with Spectron and Mocha",
"dependencies": {
"@types/mocha": "^8.2.0",
"allure-commandline": "^2.13.8",
"chai": "^4.2.0",
"electron": "^9.2.1",
"mocha": "^8.2.1",
"mocha-allure-reporter": "^1.4.0",
"mocha-multi-reporters": "^1.5.1",
"mochawesome": "^6.2.1",
"moment": "^2.29.1",
"prettier": "^2.2.1",
"selenium-webdriver": "^4.0.0-alpha.8",
"spectron": "^11.1.0",
"typescript": "^4.1.3"
},
"devDependencies": {},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc -w",
"tests": "mocha ./dist/specs --config .mocharc.json",
"format": "prettier --check \"**/*.ts\" --write",
"report:generate": "npx allure generate --clean ./reports/allure-results -o ./reports/allure-report",
"report:open": "npx allure open ./reports/allure-report"
},
"license": "ISC"
}