forked from 18F/analytics-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "analytics-reporter",
"version": "1.1.1",
"description": "A lightweight command line tool for reporting and publishing analytics data from a Google Analytics account.",
"keywords": ["analytics", "google analytics"],
"homepage": "https://github.com/18F/analytics-reporter",
"license": "CC0-1.0",
"scripts": {
"start": "node app.js",
"test": "node test/*"
},
"contributors": [
{
"name": "Gabriel Ramirez",
"email": "[email protected]"
},
{
"name": "Eric Mill",
"email": "[email protected]"
},
{
"name": "Lauren Ancona",
"email": "[email protected]"
}
],
"files": [
"bin", "test", "reports",
"analytics.js", "config.js",
"package.json",
"*.md"
],
"engines": {"node": ">=0.10.0"},
"os": ["!win32"],
"preferGlobal": true,
"main": "analytics",
"bin": {
"analytics": "./bin/analytics"
},
"repository": {
"type": "git",
"url": "git://github.com/18F/analytics-reporter.git"
},
"bugs": {
"url": "https://github.com/18F/analytics-reporter/issues"
},
"dependencies": {
"googleapis": "^2.1.5",
"node-schedule": "^0.1.13",
"minimist": "*",
"async": "*",
"aws-sdk": "*",
"fast-csv": "*",
"lodash": "*"
},
"devDependencies": {
"body-parser": "~1.8.1",
"express": "~4.9.0",
"ejs": "~2.3.1"
}
}