forked from pat310/google-trends-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "google-trends-api",
"version": "1.3.1",
"description": "an API layer on top of google trends",
"main": "index.js",
"scripts": {
"test": "mocha",
"compile": "./node_modules/.bin/babel --presets es2015 -d lib/ src/",
"test-cov": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
"prepublish": "npm run compile",
"pretest": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pat310/google-trends-api.git"
},
"keywords": [
"google",
"trends",
"API",
"keyword",
"search"
],
"author": "Patrick Trasborg <[email protected]> (http://trasb.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pat310/google-trends-api/issues"
},
"homepage": "https://github.com/pat310/google-trends-api#readme",
"dependencies": {
"cheerio": "^0.20.0",
"request": "^2.73.0",
"request-promise": "^4.0.0",
"xml2js": "^0.4.16"
},
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-preset-es2015": "^6.6.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"coveralls": "^2.11.8",
"istanbul": "^0.4.2",
"mocha": "^2.4.5"
}
}