-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 774 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 774 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
41
42
43
{
"name": "scrap",
"version": "0.1.0",
"description": "A simple screen scraper module that uses jQuery style semantics.",
"homepage": [
""
],
"repository": {
"type": "git",
"url": "git@github.com:jprichardson/node-scrap.git"
},
"keywords": [
"screen",
"scraping",
"scraper",
"jquery",
"harvesting",
"screen scraping",
"cheerio",
"request",
"http",
"html"
],
"author": "JP Richardson <jprichardson@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": ""
}
],
"dependencies": {
"request": "*",
"cheerio": "0.10.4"
},
"devDependencies": {
"autoresolve": "0.0.3",
"buffet": "~0.4.6"
},
"main": "./lib/scrap.js",
"scripts": {
"test": "mocha test"
}
}