-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 1.33 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
{
"name": "images-downloader",
"version": "1.0.3",
"description": "A Node.js module for downloading a single image or multiple images to disk from a given Url (checking if url exist and detecting image type)",
"main": "images-downloader.js",
"scripts": {
"test": "mocha --reporter spec"
},
"engines": {
"node": ">=4.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tekdreams/images-downloader.git"
},
"keywords": [
"image",
"images",
"array",
"download",
"downloader",
"crawler",
"crawl",
"photo",
"photos",
"img",
"pic",
"picture",
"pictures",
"detect",
"check",
"png",
"jpg",
"gif",
"webp",
"bmp",
"psd",
"jxr",
"mime",
"buffer",
"binary",
"type",
"isurl",
"image-processing",
"download-photo",
"download-photos",
"mime-types",
"url",
"multiple",
"downloading",
"extension",
"ext"
],
"author": "Galonde Matthieu <galonde.matthieu@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tekdreams/images-downloader/issues"
},
"homepage": "https://github.com/tekdreams/images-downloader#readme",
"dependencies": {
"image-type": "^3.0.0",
"mocha": "^3.4.2",
"request": "^2.81.0",
"underscore": "^1.8.3"
}
}