-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 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
{
"name": "ackee-report",
"version": "2.0.1",
"description": "CLI tool to generate performance reports of websites using the self-hosted analytics tool Ackee.",
"bin": "./src/index.js",
"scripts": {
"lint": "eslint ./src/",
"template:dev": "ejs-serve -f ./src/templates/email.ejs -d sample-data.json -e"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BetaHuhn/ackee-report.git"
},
"bugs": {
"url": "https://github.com/BetaHuhn/ackee-report/issues"
},
"homepage": "https://github.com/BetaHuhn/ackee-report#readme",
"author": "Maximilian Schiller <schiller@mxis.ch>",
"license": "MIT",
"keywords": [
"ackee",
"analytics",
"website-analytics",
"email-report",
"cli"
],
"dependencies": {
"axios": "^0.21.0",
"commander": "^6.2.1",
"configstore": "^5.0.1",
"dotenv": "^8.6.0",
"ejs": "^3.1.6",
"feed": "^4.2.2",
"mjml": "^4.10.1",
"nodemailer": "^6.6.2",
"ora": "^5.4.1",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"@betahuhn/config": "^1.1.0",
"ejs-serve": "^1.2.22",
"eslint": "^7.30.0"
},
"publishConfig": {
"access": "public"
}
}