forked from sindresorhus/capture-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 981 Bytes
/
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
{
"name": "capture-website",
"version": "0.8.0",
"description": "Capture screenshots of websites",
"license": "MIT",
"repository": "sindresorhus/capture-website",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"engines": {
"node": ">=8"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"capture",
"screenshot",
"website",
"page",
"url",
"screen",
"webshot",
"puppeteer",
"chrome",
"chromium",
"image",
"png",
"jpg"
],
"dependencies": {
"file-url": "^3.0.0",
"puppeteer": "^2.0.0",
"tough-cookie": "^3.0.1"
},
"devDependencies": {
"@types/puppeteer": "^1.20.2",
"ava": "^2.0.0",
"create-test-server": "^3.0.1",
"delay": "^4.1.0",
"image-size": "^0.8.3",
"is-jpg": "^2.0.0",
"is-png": "^2.0.0",
"pify": "^4.0.1",
"png-js": "^0.1.1",
"tempy": "^0.3.0",
"tsd": "^0.10.0",
"xo": "^0.25.3"
}
}