-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "node-simple-ga",
"version": "0.5.1",
"description": "A simple to use NodeJs package for the Google Analytics Reporting API",
"keywords": [
"nodejs",
"google analytics",
"ga",
"analytics api",
"google analytics api",
"analytics reporting api v4",
"universal analytics",
"analytics v4",
"reporting api v4",
"google analytics client"
],
"main": "index.js",
"scripts": {
"test": "node node_modules/nyc/bin/nyc node_modules/mocha/bin/mocha",
"prettier": "prettier --no-config --print-width 120 --parser flow --use-tabs --write *.js **/*.js"
},
"homepage": "https://github.com/lescinskiscom/node-simple-ga#readme",
"repository": {
"type": "git",
"url": "https://github.com/lescinskiscom/node-simple-ga"
},
"author": {
"name": "Ringolds Lescinskis",
"email": "[email protected]",
"url": "https://www.lescinskis.com"
},
"license": "MIT",
"dependencies": {
"clone-deep": "^4.0.0",
"googleapis": "^66.0.0",
"moment": "^2.22.2"
},
"devDependencies": {
"chai": "^4.1.2",
"dotenv": "^6.0.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"prettier": "^1.13.7"
}
}