-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "node-image-size-scanner",
"version": "1.0.10",
"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 <[email protected]>",
"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.1.5",
"bunyan": "^1.3.6",
"cheerio": "^0.19.0",
"colors": "^1.1.0",
"filesize": "^3.1.2",
"minimist": "^1.1.1",
"nodeify": "^1.0.0",
"request": "^2.57.0",
"sprintf-js": "^1.0.2",
"url-parse": "^1.0.1"
},
"devDependencies": {
"mocha": "^2.2.5",
"must": "^0.13.1",
"nock": "^7.0.2"
},
"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"
}
}