forked from 18F/analytics-reporter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
77 lines (77 loc) · 1.66 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
69
70
71
72
73
74
75
76
77
{
"name": "analytics-reporter",
"version": "1.2.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": {
"migrate": "`npm bin`/knex migrate:latest",
"pretest": "NODE_ENV=test npm run migrate",
"start": "node app.js",
"test": "`npm bin`/mocha test/*.test.js test/**/*.test.js"
},
"contributors": [
{
"name": "Gabriel Ramirez",
"email": "[email protected]"
},
{
"name": "Eric Mill",
"email": "[email protected]"
},
{
"name": "Lauren Ancona",
"email": "[email protected]"
},
{
"name": "Eric Schles",
"email": "[email protected]"
}
],
"files": [
"bin",
"src",
"test",
"reports",
"index.js",
"newrelic.js",
"package.json",
"*.md"
],
"engines": {
"node": ">=7.0.0"
},
"preferGlobal": true,
"main": "index",
"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": {
"aws-sdk": "2.58.0",
"fast-csv": "^2.4.0",
"googleapis": "^19.0.0",
"minimist": "^1.2.0",
"winston-color": "^1.0.0"
},
"devDependencies": {
"chai": "^4.0.2",
"mocha": "^3.2.0",
"proxyquire": "^1.7.11"
},
"optionalDependencies": {
"knex": "^0.13.0",
"newrelic": "^1.36.1",
"pg": "^6.1.2"
}
}