forked from webdriverio-boneyard/wdio-allure-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.55 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "wdio-allure-reporter",
"version": "0.2.0",
"description": "A WebdriverIO plugin. Report results in Allure format.",
"main": "build/reporter.js",
"scripts": {
"build": "run-s clean compile",
"clean": "rm -rf ./build ./coverage ./.allure-results ./screenshots",
"compile": "babel lib/ -d build/",
"eslint": "eslint ./lib test/",
"release": "np patch",
"release:patch": "np patch",
"release:minor": "np minor",
"release:major": "np major",
"test": "run-s eslint test:unit",
"test:unit": "mocha",
"prepublish": "npm prune && run-s build",
"watch": "npm run compile -- --watch",
"report": "run-s report:*",
"report:generate": "allure generate .allure-results --clean",
"report:open": "allure open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/wdio-allure-reporter.git"
},
"directories": {
"lib": "./lib"
},
"keywords": [
"allure",
"reporter",
"webdriverio",
"wdio",
"wdio-plugin",
"wdio-reporter"
],
"author": "Christian Bromann <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio/wdio-allure-reporter/issues"
},
"homepage": "https://github.com/webdriverio/wdio-allure-reporter#readme",
"dependencies": {
"allure-js-commons": "^1.3.2",
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"allure-commandline": "^2.5.0",
"babel-cli": "~6.26.0",
"babel-core": "~6.25.0",
"babel-eslint": "~8.1.0",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"chai": "^4.1.2",
"cheerio": "^0.22.0",
"del": "^3.0.0",
"eslint": "^4.14.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"np": "~2.18.0",
"npm-run-all": "~4.1.0",
"wdio-phantomjs-service": "^0.2.2",
"wdio-mocha-framework": "^0.5.12",
"node-static": "^0.7.10",
"webdriverio": "4.8.0"
},
"contributors": [
"christian-bromann <[email protected]>",
"George Crawford <[email protected]>",
"just-boris <[email protected]>",
"Ilgiz Vafin <[email protected]>",
"Christian Bromann <[email protected]>",
"George Crawford <[email protected]>",
"Boris Serdiuk <[email protected]>",
"Stefan Grönke <[email protected]>"
]
}