forked from sindresorhus/pageres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
126 lines (126 loc) · 2.3 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "pageres",
"version": "6.3.1",
"description": "Capture website screenshots",
"license": "MIT",
"repository": "sindresorhus/pageres",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"main": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && nyc ava",
"release": "np",
"build": "del-cli dist && tsc",
"prepare": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"page",
"website",
"site",
"web",
"url",
"resolution",
"size",
"screenshot",
"screenshots",
"screengrab",
"screen",
"snapshot",
"shot",
"responsive",
"gulpfriendly",
"puppeteer",
"chrome",
"image",
"svg",
"render",
"html",
"headless",
"capture",
"pic",
"picture",
"png",
"jpg",
"jpeg"
],
"dependencies": {
"array-differ": "^3.0.0",
"array-uniq": "^2.1.0",
"capture-website": "^1.4.0",
"date-fns": "^2.16.1",
"filenamify": "^4.2.0",
"filenamify-url": "^2.1.1",
"get-res": "^3.0.0",
"lodash.template": "^4.5.0",
"log-symbols": "^4.0.0",
"make-dir": "^3.1.0",
"p-map": "^4.0.0",
"p-memoize": "^4.0.1",
"plur": "^4.0.0",
"unused-filename": "^2.1.0",
"viewport-list": "^5.1.1"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.7.0",
"@types/cookie": "^0.4.0",
"@types/filenamify-url": "^1.0.1",
"@types/get-res": "^3.0.1",
"@types/lodash.template": "^4.5.0",
"@types/node": "^14.14.13",
"@types/pify": "^5.0.0",
"@types/png.js": "^0.2.0",
"@types/sinon": "^9.0.9",
"@types/viewport-list": "^5.1.1",
"ava": "^3.14.0",
"cookie": "^0.4.1",
"del-cli": "^3.0.1",
"file-type": "^12.3.0",
"get-port": "^5.1.1",
"image-size": "^0.9.3",
"nyc": "^15.1.0",
"path-exists": "^4.0.0",
"pify": "^5.0.0",
"png.js": "^0.2.1",
"sinon": "^9.2.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"xo": "^0.38.2"
},
"types": "dist/index.d.ts",
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"xo": {
"parserOptions": {
"project": "./test/tsconfig.json"
},
"rules": {
"no-await-in-loop": "off",
"@typescript-eslint/no-unused-vars": "off"
}
},
"nyc": {
"reporter": [
"text",
"lcov"
],
"extension": [
".ts"
]
}
}