-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.54 KB
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
{
"name": "node-image-size-scanner",
"version": "1.1.0",
"description": "For a given URL, report image file sizes and paths that exceed a threshold value as well as non-200 status codes. Follows redirects.",
"main": "index.js",
"author": "Kip Gebhardt <kgebhardt23@gmail.com>",
"license": "MIT",
"scripts": {
"test": "./node_modules/.bin/mocha test/*.js"
},
"bugs": {
"url": "https://github.com/rv-kip/node-image-size-scanner/issues"
},
"dependencies": {
"bluebird": "^3.7.2",
"bunyan": "^1.8.15",
"cheerio": "^1.0.0-rc.12",
"colors": "^1.4.0",
"filesize": "^10.1.0",
"minimist": "^1.2.8",
"nodeify": "^1.0.1",
"node-fetch": "^2.7.0",
"sprintf-js": "^1.1.3",
"url-parse": "^1.5.10"
},
"devDependencies": {
"mocha": "^10.2.0",
"must": "^0.13.4",
"nock": "^13.3.8"
},
"repository": {
"type": "git",
"url": "git://github.com/rv-kip/node-image-size-scanner.git"
},
"homepage": "https://github.com/rv-kip/node-image-size-scanner",
"keywords": [
"image",
"dimensions",
"size",
"bytes",
"web",
"website",
"jpg",
"jpeg",
"png",
"filesize",
"scanner",
"scan",
"utility",
"cli",
"tool",
"monitor",
"monitoring",
"scan for missing images"
],
"bin": {
"image_check": "./image_check.js"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"engines": {
"node": ">=14.0.0"
}
}