forked from WasiqB/multiple-cucumber-html-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.11 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
{
"name": "vue-cucumber-html-reporter",
"version": "0.2.2",
"description": "Generate beautiful cucumberjs reports for multiple instances (browsers / devices)",
"keywords": [
"cucumber",
"html",
"test report",
"multiple-cucumber-html-reporter",
"vue-cucumber-html-reporter",
"html report",
"json to html"
],
"main": "lib/generate-report.js",
"license": "MIT",
"scripts": {
"prepublish": "npm run webpack",
"webpack:watch": "webpack --watch",
"prewebpack": "node ./lib/compile-fonts.js",
"webpack": "webpack",
"pretest": "npm run webpack",
"test": "node ./test/test.js",
"unit.test": "jasmine JASMINE_CONFIG_PATH=test/unit/jasmine.json",
"unit.test.coverage": "JASMINE_CONFIG_PATH=test/unit/jasmine.json istanbul cover jasmine",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/AlexGalichenko/vue-cucumber-html-reporter.git"
},
"authors": [
"wswebcreation",
"Alexander Galichenko"
],
"bugs": {
"url": "https://github.com/AlexGalichenko/vue-cucumber-html-reporter/issues"
},
"homepage": "https://github.com/AlexGalichenko/vue-cucumber-html-reporter#readme",
"dependencies": {
"chalk": "1.1.3",
"find": "^0.2.9",
"fs-extra": "^5.0.0",
"js-base64": "^2.4.3",
"jsonfile": "^4.0.0",
"lodash": "^4.17.15",
"moment": "^2.20.1",
"opn": "^5.2.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"bootstrap": "^4.4.1",
"chart.js": "^2.9.3",
"coveralls": "^3.0.9",
"css-loader": "^3.4.0",
"file-loader": "^5.0.2",
"font-awesome": "^4.7.0",
"html-webpack-inline-source-plugin": "0.0.10",
"html-webpack-plugin": "^3.2.0",
"istanbul": "0.4.5",
"jasmine": "2.6.0",
"style-loader": "^1.1.1",
"url-loader": "^3.0.0",
"vue": "^2.6.11",
"vue-chartjs": "^3.5.0",
"vue-loader": "^15.8.3",
"vue-router": "^3.1.5",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
}
}