forked from azachar/protractor-screenshoter-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.19 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
{
"name": "protractor-screenshoter-plugin",
"version": "0.10.1",
"description": "A jasmine2 protractor plugin that captures for each browser instance a screenshot and browsers' console logs. The snapshot is made optionally for each expect or spec. Plugins comes with a beautiful angular based analytics tool to visually check and fix tests results.",
"main": "index.js",
"scripts": {
"setup": "webdriver-manager update",
"server": "webdriver-manager start",
"lint": "eslint index.js spec/**/*.spec.js",
"test": "nyc jasmine",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"testing": "TEST_COVERAGE_SKIP=true TEST_DEBUG=true jasmine",
"release": "node_modules/standard-version/bin/cli.js"
},
"nyc": {
"include": [
"index.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/azachar/protractor-screenshoter-plugin.git"
},
"keywords": [
"jasmine2",
"Protractor",
"screenshots",
"report",
"Protractor html report",
"Jasmine html report",
"protractor multi-browser screenshots",
"protract chat alike screenshots",
"html reporter Protractor",
"protractor-screenshot",
"screenshot-on-failure",
"screenshot-on-expect",
"protractor-utilities",
"browser-console-log",
"protractor-spec-fail-on-console-error"
],
"author": "Andrej Zachar",
"contributors": [
"Abhishek Swain"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/azachar/protractor-screenshoter-plugin/issues"
},
"homepage": "https://github.com/azachar/protractor-screenshoter-plugin",
"dependencies": {
"circular-json": "^0.5.1",
"fs-extra": "^5.0.0",
"klaw-sync": "^3.0.2",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1",
"moment": "^2.20.1",
"q": "^1.5.1",
"screenshoter-report-analyzer": "^0.6",
"uuid": "^3.1.0"
},
"devDependencies": {
"codecov": "^3.0.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.14.0",
"jasmine": "^2.8.0",
"nyc": "^11.4.1",
"protractor": "^5.4",
"standard-version": "^4.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}