-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.42 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
46
47
48
49
{
"name": "wdio-testdeck-allure-examples",
"version": "1.0.0",
"description": "Decorators'-based WDIO example.",
"main": "index.js",
"scripts": {
"lint": "tslint --project tsconfig.json",
"clean": "rimraf ./report ./allure-results",
"copyResources": "cpx ./src/resources/allure.properties ./allure-results/",
"test": "tsc && npm run clean && sleep 1 && wdio wdio.conf.js",
"allure-report": "npm run copyResources && allure generate ./allure-results -c && allure open"
},
"keywords": [
"wdio",
"mocha",
"decorators",
"testdeck",
"allure"
],
"author": "Sergey Korol",
"license": "Apache-2.0",
"devDependencies": {
"@testdeck/mocha": "0.0.10",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.0",
"@wdio/allure-reporter": "^6.1.0",
"@wdio/cli": "^6.12.1",
"@wdio/local-runner": "^6.12.1",
"@wdio/mocha-framework": "^6.1.0",
"@wdio/sync": "^6.0.18",
"allure-commandline": "^2.13.0",
"chai": "^4.2.0",
"cpx": "^1.5.0",
"dotenv": "^8.2.0",
"memory-cache": "^0.2.0",
"mocha": "^7.1.1",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.16",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3",
"typescript-eslint-parser": "^22.0.0"
}
}