-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
32 lines (32 loc) · 957 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
{
"name": "html-scrapper",
"version": "0.0.3",
"description": "A general purpose scrapper written using cheerio, request, async etc. It can scrap data from html pages based on some schema defnition. A schema denition includes a css selector and a function that accepts this element and returns the data. It is simple as that.",
"main": "index.js",
"scripts": {
"test": "mocha lib/*.spec.js"
},
"dependencies": {
"async": "^1.3.0",
"buffered-sink": "git://github.com/harish2704/node-buffered-sink",
"cheerio": "^0.19.0",
"job-manager": "0.0.4",
"lodash": "^3.10.0",
"request": "^2.58.0",
"underscore": "^1.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/harish2704/html-scrapper"
},
"keywords": [
"scrapper",
"cheerio",
"scrap"
],
"author": "Harish.K",
"license": "Apache-V2",
"bugs": {
"url": "https://github.com/harish2704/html-scrapper/issues"
}
}