forked from jprichardson/node-linkscrape
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·40 lines (40 loc) · 825 Bytes
/
package.json
File metadata and controls
executable file
·40 lines (40 loc) · 825 Bytes
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
{
"name": "linkscrape",
"version": "0.1.0",
"description": "A Node.js module to scrape and normalize links from an HTML string.",
"homepage": [
"https://github.com/jprichardson/node-linkscrape"
],
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/node-linkscrape"
},
"keywords": [
"extract",
"scrape",
"html",
"link",
"anchor",
"body",
"scraper",
"http"
],
"author": "JP Richardson <jprichardson@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jprichardson/node-linkscrape/raw/master/LICENSE"
}
],
"dependencies": {
"cheerio": "~0.10.3"
},
"devDependencies": {
"mocha": "*",
"testutil": "0.2.x"
},
"main": "./lib/linkscrape",
"scripts": {
"test": "mocha test"
}
}