forked from jprichardson/node-google
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 893 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
33
34
35
36
37
38
39
40
{
"name": "google",
"version": "0.3.2",
"description": "A module to search and scrape google. This is not sponsored, supported, or affiliated with Google Inc.",
"homepage": "https://github.com/jprichardson/node-google",
"repository": {
"type": "git",
"url": "https://github.com/jprichardson/node-google"
},
"keywords": [
"google",
"search",
"scrape",
"scraper",
"screen"
],
"author": "JP Richardson <[email protected]>",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jprichardson/node-google/raw/master/LICENSE"
}
],
"dependencies": {
"cheerio": "~0.10.8",
"request": "2.12.x",
"commander": "~1.1.1"
},
"devDependencies": {
"mocha": "*",
"testutil": "~0.5.1"
},
"main": "./lib/google",
"scripts": {
"test": "mocha test"
},
"bin": {
"google": "./bin/google"
}
}