UNPKG

1.3 kBJSONView Raw
1{
2 "name": "analytics-reporter",
3 "version": "0.3.0",
4 "description": "A lightweight command line tool for reporting and publishing analytics data from a Google Analytics account.",
5 "keywords": ["analytics", "google analytics"],
6 "homepage": "https://github.com/18f/analytics-reporter",
7 "license": "CC0-1.0",
8 "scripts": {
9 "start": "node app.js",
10 "test": "node test/*"
11 },
12 "contributors": [
13 {
14 "name": "Gabriel Ramirez",
15 "email": "gabriel.ramirez@gsa.gov"
16 },
17 {
18 "name": "Eric Mill",
19 "email": "eric.mill@gsa.gov"
20 }
21 ],
22 "files": [
23 "bin", "test",
24 "analytics.js", "config.js",
25 "reports.json", "package.json",
26 "*.md"
27 ],
28 "engines": {"node": ">=0.10.0"},
29 "os": ["!win32"],
30 "preferGlobal": true,
31 "main": "analytics",
32 "bin": {
33 "analytics": "./bin/analytics"
34 },
35 "repository": {
36 "type": "git",
37 "url": "git://github.com/18f/analytics-reporter.git"
38 },
39 "bugs": {
40 "url": "https://github.com/18f/analytics-reporter/issues"
41 },
42 "dependencies": {
43 "googleapis": "^1.0.21",
44 "node-schedule": "^0.1.13",
45 "minimist": "*",
46 "async": "*",
47 "aws-sdk": "*",
48 "fast-csv": "*"
49 },
50 "devDependencies": {
51 "body-parser": "~1.8.1",
52 "express": "~4.9.0",
53 "mongoose": "^3.8.19"
54 }
55}