-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 899 Bytes
/
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
{
"name": "@jop-software/astro-matomo",
"version": "1.1.1",
"description": "Matomo integration for Astro",
"type": "module",
"keywords": [
"astro-integration",
"astro-component",
"matomo",
"analytics",
"tracking"
],
"contributors": [
{
"name": "Johannes Przymusinski",
"email": "johannes.przymusinski@jop-software.de",
"url": "https://jop-software.de"
}
],
"exports": {
".": "./src/index.js",
"./matomo.js": "./src/matomo.js",
"./package.json": "./package.json"
},
"files": [
"src/index.js",
"src/matomo.js"
],
"license": "GPL-3.0-or-later",
"scripts": {
"prettier:check": "prettier --check src",
"prettier:write": "prettier --write src"
},
"devDependencies": {
"prettier": "^2.7.1"
},
"repository": {
"type": "git",
"url": "https://github.com/jop-software/astro-matomo"
}
}