forked from nodeca/probe-image-size
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 903 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
{
"name": "probe-image-size",
"version": "6.0.0",
"description": "Get image size without full download (JPG, GIF, PNG, WebP, BMP, TIFF, PSD)",
"keywords": [
"image",
"size",
"jpg",
"jpeg",
"ico",
"gif",
"png",
"webp",
"tiff",
"bmp",
"svg",
"psd"
],
"repository": "nodeca/probe-image-size",
"license": "MIT",
"files": [
"index.js",
"http.js",
"stream.js",
"sync.js",
"lib/"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha",
"coverage": "npm run test && nyc report --reporter html",
"report-coveralls": "nyc --reporter=lcov mocha"
},
"mocha": {
"timeout": 5000
},
"dependencies": {
"deepmerge": "^4.0.0",
"needle": "^2.5.2",
"stream-parser": "~0.3.1"
},
"devDependencies": {
"eslint": "^7.12.1",
"mocha": "^8.2.0",
"nyc": "^15.1.0"
}
}