This repository was archived by the owner on Aug 31, 2021. It is now read-only.
forked from 18F/analytics-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.57 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.57 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
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
69
70
71
72
73
74
{
"name": "analytics-reporter",
"version": "1.1.2",
"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/app.js",
"test": "node test/*",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"contributors": [
{
"name": "Gabriel Ramirez",
"email": "gabriel.ramirez@gsa.gov"
},
{
"name": "Eric Mill",
"email": "eric.mill@gsa.gov"
},
{
"name": "Lauren Ancona",
"email": "lauren.ancona@phila.gov"
}
],
"files": [
"bin",
"test",
"reports",
"analytics.js",
"config.js",
"package.json",
"*.md"
],
"engines": {
"node": ">=0.10.0"
},
"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": {
"async": "*",
"aws-sdk": "*",
"cfenv": "^1.0.3",
"fast-csv": "*",
"googleapis": "^16.0.0",
"lodash": "^3.10.1",
"minimist": "*",
"node-schedule": "^0.1.13",
"snyk": "^1.19.1"
},
"devDependencies": {
"body-parser": "~1.8.1",
"coveralls": "^2.11.14",
"ejs": "~2.3.1",
"express": "~4.9.0",
"mocha": "^3.0.2"
},
"snyk": true
}