-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.12 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.12 KB
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
{
"name": "google-scraper",
"main": "./index",
"version": "1.1.2",
"description": "Extract links from Google SERP",
"author": "Thomas Blanc-hector <thomas.blanc.hector@gmail.com>",
"keywords": [
"google",
"scrape",
"scraping",
"scraper"
],
"repository": {
"type": "git",
"url": "https://github.com/jsnomad/Google-Scraper"
},
"license": "MIT",
"scripts": {
"compile": "babel -d lib/ src/",
"prepublish": "npm run compile",
"lint": "eslint ./src",
"mocha": "./node_modules/.bin/mocha --timeout 15000 --compilers js:babel-register --require babel-polyfill",
"test": "npm run compile && npm run lint && npm run mocha"
},
"dependencies": {
"cheerio": "^0.22.0",
"request": "^2.79.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0"
}
}