-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 873 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 873 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
44
{
"name": "skrap",
"description": "Easily scrap web pages by providing json recipes",
"version": "0.1.1",
"homepage": "http://nickdima.github.io/skrap/",
"author": {
"name": "Nick Dima",
"email": "nick.dima@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/nickdima/skrap.git"
},
"bugs": {
"url": "https://github.com/nickdima/skrap/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nickdima/skrap/blob/master/LICENSE-MIT"
}
],
"main": "lib/skrap",
"bin": {
"skrap": "./lib/cli.js"
},
"directories": {
"example": "examples"
},
"engines": {
"node": ">= 0.6.0"
},
"dependencies": {
"cheerio": "~0.13.1",
"optimist": "~0.6.0",
"superagent": "~0.16.0"
},
"keywords": [
"scrap",
"scraping",
"crawl",
"crawling"
]
}