forked from timvracer/best-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 959 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
{
"name": "best-image",
"version": "2.0.12",
"description": "Library that will retrieve an HTML document (by URL) and return the best image from the page to represent the document",
"main": "lib/best-image.js",
"scripts": {
"test": "NODE_ENV='test' mocha test/best-image_test.js --reporter spec"
},
"keywords": [
"image",
"crawl",
"best image"
],
"repository": {
"type": "git",
"url": "https://github.com/timvracer/best-image"
},
"author": "Tim Villanueva, Copyright 2016 Ask.com",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"assert": "^1.5.0"
},
"dependencies": {
"async": "^2.6.2",
"callback-data-bus": "github:GuildNetwork/callback-data-bus",
"cheerio": "^0.20.0",
"css": "^2.2.1",
"image-size": "^0.5.0",
"image-type": "^2.1.0",
"request": "^2.74.0",
"string-similarity": "^1.1.0",
"underscore": "^1.8.3",
"url": "^0.11.0"
}
}