forked from prantlf/grunt-html-dom-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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
{
"name": "grunt-html-dom-snapshot",
"description": "Takes snapshots of the HTML markup on web pages - their immediate DOM content - and screenshots of their viewport - how they look like.",
"version": "0.0.0-development",
"homepage": "https://github.com/prantlf/grunt-html-dom-snapshot#readme",
"author": {
"name": "Ferdinand Prantl",
"email": "[email protected]",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/grunt-html-dom-snapshot.git"
},
"bugs": {
"url": "https://github.com/prantlf/grunt-html-dom-snapshot/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/grunt-html-dom-snapshot/blob/master/LICENSE"
}
],
"engines": {
"node": ">=10"
},
"scripts": {
"lint": "grunt standard",
"test": "grunt",
"coverage": "grunt instrument && GRUNT_HTML_DOM_SNAPSHOT_COVERAGE=1 grunt"
},
"dependencies": {
"mkdirp": "1.0.4",
"pad-left": "2.1.0",
"webdriverio": "6.4.0"
},
"devDependencies": {
"grunt": "1.0.4",
"grunt-chromedriver": "0.0.1",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-connect": "3.0.0",
"grunt-contrib-nodeunit": "2.1.0",
"grunt-istanbul": "0.8.0",
"grunt-standard": "3.2.0"
},
"peerDependencies": {
"grunt": ">=1.2.1"
},
"keywords": [
"grunt-tasks",
"testing",
"html",
"browser",
"snapshots",
"screenshots"
]
}