-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
108 lines (108 loc) · 3.77 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "ngx-matomo-client",
"version": "7.0.1",
"author": "Emmanuel Roux (https://github.com/EmmanuelRoux)",
"description": "Matomo (fka. Piwik) client for Angular applications",
"keywords": [
"matomo",
"piwik",
"angular",
"analytics"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"demo": "npm run build:lib && ng serve --open",
"build": "ng build",
"build:lib": "ng build ngx-matomo-client",
"build:schematics": "node scripts/build-schematics.js",
"build:prod:lib": "ng build ngx-matomo-client --configuration production",
"build:prod:schematics": "node scripts/build-schematics.js --prod",
"postbuild:lib": "npm run build:schematics",
"postbuild:prod:lib": "npm run build:prod:schematics",
"test": "ng test --code-coverage --no-watch",
"test:watch": "ng test",
"test:ci": "ng test --no-watch --no-progress --code-coverage --browsers=ChromeHeadlessCI",
"lint": "ng lint --cache && npm run prettier:check",
"check-missing-api": "node scripts/detect-missing-api.mjs",
"prettier:check": "prettier --check --cache .",
"prettier:write": "prettier --write --cache .",
"format": "npm run update:toc && npm run prettier:write",
"semantic-release": "semantic-release",
"semantic-release:prepare-ci": "chmod +x -R ./scripts/",
"semantic-release:ci": "npm run semantic-release:prepare-ci && npm run semantic-release",
"update:toc": "markdown-toc README.md -i --maxdepth=3 && markdown-toc CONTRIBUTING.md -i --maxdepth=3",
"prepare": "husky",
"dev:ng-add": "npm run build:lib && npm link ./dist/ngx-matomo-client && ng add ngx-matomo-client --project demo"
},
"dependencies": {
"@angular/animations": "^19.0.5",
"@angular/cdk": "^19.0.4",
"@angular/common": "^19.0.5",
"@angular/compiler": "^19.0.5",
"@angular/core": "^19.0.5",
"@angular/forms": "^19.0.5",
"@angular/material": "^19.0.4",
"@angular/platform-browser": "^19.0.5",
"@angular/platform-browser-dynamic": "^19.0.5",
"@angular/router": "^19.0.5",
"rxjs": "~7.5.5",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.6",
"@angular/cli": "^19.0.6",
"@angular/compiler-cli": "^19.0.5",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@schematics/angular": "^17.3.11",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "~4.6.4",
"@types/ncp": "^2.0.8",
"@types/node": "^22.10.5",
"angular-eslint": "^19.0.2",
"cheerio": "^1.0.0",
"compare-func": "^2.0.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"jasmine-core": "~5.5.0",
"jasmine-spec-reporter": "~7.0.0",
"jsonc-parser": "^3.2.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-junit-reporter": "^2.0.1",
"lint-staged": "^15.3.0",
"markdown-toc": "^1.2.0",
"ncp": "^2.0.0",
"nerf-dart": "^1.0.0",
"ng-packagr": "^19.0.1",
"node-fetch": "^3.3.2",
"prettier": "3.4.2",
"protractor": "~7.0.0",
"semantic-release": "^23.1.1",
"semver": "^7.6.3",
"ts-node": "~10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.19.0"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/EmmanuelRoux/ngx-matomo-client.git"
},
"bugs": {
"url": "https://github.com/EmmanuelRoux/ngx-matomo-client/issues"
},
"license": "MIT",
"homepage": "https://github.com/EmmanuelRoux/ngx-matomo-client#readme",
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}