forked from pat310/google-trends-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "google-trends-api",
"version": "4.9.2",
"description": "an API layer on top of google trends",
"main": "lib/google-trends-api.min.js",
"scripts": {
"build": "webpack --mode=build",
"dev": "webpack --progress --colors --watch --mode=dev",
"start": "npm run dev",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"cover": "nyc --reporter=lcov mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"coveralls": "npm run cover && nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc mocha --compilers js:babel-core/register --colors ./test/*.spec.js",
"preversion": "npm run build",
"lint:eslint": "eslint src, test",
"lint:staged": "lint-staged"
},
"lint-staged": {
"*.js": "lint:eslint"
},
"pre-commit": "lint:staged",
"repository": {
"type": "git",
"url": "git+https://github.com/pat310/google-trends-api.git"
},
"keywords": [
"google",
"trends",
"API",
"keyword",
"search",
"google-trends"
],
"author": "Patrick Trasborg <[email protected]> (http://trasb.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/pat310/google-trends-api/issues"
},
"files": [
"src/*"
],
"homepage": "https://github.com/pat310/google-trends-api#readme",
"dependencies": {},
"devDependencies": {
"babel": "6.3.13",
"babel-core": "6.1.18",
"babel-eslint": "5.0.0",
"babel-loader": "6.1.0",
"babel-plugin-add-module-exports": "0.1.2",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "6.3.13",
"chai": "3.4.1",
"coveralls": "^2.11.15",
"eslint": "1.7.2",
"eslint-loader": "1.1.0",
"istanbul": "^0.4.5",
"json-loader": "^0.5.4",
"lint-staged": "^4.0.3",
"mocha": "2.3.4",
"mocha-lcov-reporter": "^1.2.0",
"nyc": "^10.1.2",
"pre-commit": "^1.2.2",
"webpack": "1.12.9",
"yargs": "3.32.0"
}
}