forked from ruipgil/scraperjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.21 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "scraperjs",
"version": "0.3.4",
"description": "A complete and versatile web scraper.",
"main": "./src/Scraper.js",
"keywords": [
"scraper",
"scraping",
"web"
],
"bin": "./bin/scraperjs",
"scripts": {
"test": "grunt test"
},
"repository": {
"type": "git",
"url": "git://github.com/ruipgil/scraperjs.git"
},
"bugs": {
"url": "https://github.com/ruipgil/scraperjs/issues"
},
"gitHead": "c58be022438e49564597bbb3ad7c036d610744f8",
"homepage": "https://github.com/ruipgil/scraperjs",
"author": "Rui Gil",
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"cheerio": "^0.19.0",
"jquery": "^2.1.1",
"phantom": "^0.7.1",
"request": "^2.55.0",
"commander": "^2.5.1"
},
"readmeFilename": "README.md",
"directories": {
"test": "test"
},
"devDependencies": {
"coveralls": "^2.11.1",
"express": "^4.8.3",
"grunt": "^0.4.5",
"grunt-cli": "~0.1.9",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-exec": "^0.4.6",
"grunt-mocha-test": "^0.11.0",
"istanbul": "^0.3.0",
"mocha": "^1.21.4"
},
"engines": {
"node": ">=0.10"
}
}