-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "best-image",
"version": "2.0.2",
"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.1.1"
},
"dependencies": {
"async": "^2.0.1",
"callback-data-bus": "^1.0.5",
"cheerio": "^0.22.0",
"css": "^2.2.4",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-config-dir": "0.3.2",
"grunt-contrib-jshint": "^2.0.0",
"grunt-env": "^0.4.4",
"grunt-mocha-cli": "^4.0.0",
"image-size": "^0.5.0",
"image-type": "^2.1.0",
"lodash": "^4.17.11",
"request": "^2.88.0",
"sinon": "^1.17.5",
"string-similarity": "^1.1.0",
"underscore": "^1.8.3",
"url": "^0.11.0"
}
}