-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 890 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 890 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": "scrape2csv",
"version": "0.1.2",
"description": "A simple node package scraping a web page and spitting the results in a CSV file.",
"author": {
"name": "Fabien Allanic",
"email": "fabien.allanic@gmail.com"
},
"dependencies": {
"jsdom": "0.2.x",
"ya-csv": "0.9.x",
"request": "2.x.x"
},
"repository": {
"type": "git",
"url": "git://github.com/fallanic/scrape2csv.git"
},
"bugs": {
"url": "https://github.com/fallanic/scrape2csv/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/fallanic/scrape2csv/blob/master/MIT-LICENSE.md"
}
],
"main": "lib/scrape2csv",
"keywords": [
"scrape",
"website",
"csv",
"file",
"spreadsheet",
"excel",
"scraper",
"scraping",
"jquery",
"css",
"selector",
"export"
],
"engine": "node >= 0.4.1"
}