-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.23 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
{
"name": "page-shots",
"version": "1.1.0",
"description": "Take screenshots of multiple pages and in multiple sizes",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"bin": {
"page-shots": "bin/page-shots.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erictompkins/page-shots.git"
},
"keywords": [
"page",
"shot",
"shots",
"page-shot",
"page-shots",
"website",
"site",
"web",
"url",
"resolution",
"screenshot",
"screenshots",
"screengrab",
"screen",
"snapshot",
"image",
"render",
"html",
"capture",
"pic",
"picture"
],
"engines": {
"node": ">=8"
},
"author": {
"name": "Eric Tompkins"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/erictompkins/page-shots/issues"
},
"homepage": "https://github.com/erictompkins/page-shots#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"esm": "^3.2.25",
"ora": "^3.4.0",
"puppeteer": "^1.18.1",
"sanitize-filename": "^1.6.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^6.1.4"
}
}