-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.11 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
{
"name": "url-info-scraper",
"version": "0.1.3",
"description": "Library to retrieve meta data (title, favicon address etc) from a url",
"homepage": "https://github.com/pauljohncleary/url-info-scraper",
"author": {
"name": "Paul Cleary",
"email": "pauljohncleary@gmail.com",
"url": "https://tab.bz"
},
"repository": "pauljohncleary/url-info-scraper",
"license": "MIT",
"files": [
"index.js",
"lib"
],
"keywords": [
"url-info-scraper",
"url info scraper",
"url",
"metadata",
"scraper",
"title",
"crawler",
"favicon",
"mime",
"type",
"checker",
"info"
],
"dependencies": {
"cheerio": "^0.19.0",
"request": "^2.85.0",
"url": "^0.10.3",
"valid-url": "^1.0.9"
},
"devDependencies": {
"grunt": "^1.0.2",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.12.0",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0",
"time-grunt": "^1.1.0"
},
"scripts": {
"test": "grunt"
}
}