forked from EmmanuelRoux/ngx-matomo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 4.04 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
109
110
111
112
113
114
{
"name": "ngx-matomo-client",
"version": "6.1.3",
"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 && npm run prettier:check",
"check-missing-api": "node scripts/detect-missing-api.mjs",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"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 install",
"dev:ng-add": "npm run build:lib && npm link ./dist/ngx-matomo-client && ng add ngx-matomo-client --project demo"
},
"dependencies": {
"@angular/animations": "^17.0.2",
"@angular/cdk": "^17.0.0",
"@angular/common": "^17.0.2",
"@angular/compiler": "^17.0.2",
"@angular/core": "^17.0.2",
"@angular/forms": "^17.0.2",
"@angular/material": "^17.0.0",
"@angular/platform-browser": "^17.0.2",
"@angular/platform-browser-dynamic": "^17.0.2",
"@angular/router": "^17.0.2",
"rxjs": "~7.5.5",
"tslib": "^2.4.1",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular-eslint/builder": "17.0.1",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/schematics": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/cli": "^17.0.0",
"@angular/compiler-cli": "^17.0.2",
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@schematics/angular": "^17.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jasmine": "~4.0.3",
"@types/ncp": "^2.0.5",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"cheerio": "^1.0.0-rc.12",
"compare-func": "^2.0.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^7.0.4",
"jasmine-core": "~4.1.0",
"jasmine-spec-reporter": "~7.0.0",
"jsonc-parser": "^3.2.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "^1.7.0",
"karma-junit-reporter": "^2.0.1",
"lint-staged": "^12.4.1",
"markdown-toc": "^1.2.0",
"ncp": "^2.0.0",
"nerf-dart": "^1.0.0",
"ng-packagr": "^17.0.0",
"ngx-spec": "^2.1.4",
"node-fetch": "^3.3.1",
"prettier": "3.0.3",
"protractor": "~7.0.0",
"semantic-release": "^19.0.3",
"semver": "^7.3.5",
"ts-node": "~8.3.0",
"typescript": "~5.2.2"
},
"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"
}
}