forked from gabceb/node-metainspector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 956 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
{
"name": "node-metainspector",
"description": "Npm package for web scraping purposes. You give it an URL, and it lets you easily get its title, links, images, description, keywords, meta tags",
"version": "1.3.0",
"homepage": "http://github.com/gabceb/node-metainspector",
"repository": "git://github.com/gabceb/node-metainspector.git",
"author": "Gabriel Cebrian <gabceb@gmail.com> (http://about.me/gabceb)",
"main": "./index.js",
"dependencies": {
"cheerio": "~0.19.0",
"lodash": "^4.12.0",
"request": "~2.74.0",
"uri-js": "~2.1.0"
},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.7.2",
"mocha": "^2.2.5",
"node-fakeweb": "0.0.9",
"should": "^7.0.1"
},
"scripts": {
"test": "make test"
},
"engines": {
"node": ">= 0.4.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/gabceb/node-metainspector/raw/master/LICENSE"
}
]
}