-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.39 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.39 KB
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
{
"name": "ngx-back-button",
"version": "21.0.0",
"license": "MIT",
"author": "Raphael Balet",
"maintainers": [
"raphael.balet@outlook.com"
],
"keywords": [
"angular",
"ngx",
"back",
"button",
"directive"
],
"homepage": "https://github.com/rbalet/ngx-back-button#readme",
"bugs": {
"url": "https://github.com/rbalet/ngx-back-button/issues"
},
"repository": {
"url": "https://github.com/rbalet/ngx-back-button"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-back-button --configuration production",
"watch": "ng build --watch --configuration development",
"test": "vitest",
"test:ci": "vitest run --coverage",
"test:ui": "vitest --ui",
"deploy": "ng build ngx-back-button --configuration production && pnpm run copy-files && pnpm publish ./dist/ngx-back-button",
"copy-files": "cp README.md dist/ngx-back-button && cp LICENSE dist/ngx-back-button"
},
"dependencies": {
"@angular/animations": "21.2.0",
"@angular/cdk": "21.2.0",
"@angular/common": "21.2.0",
"@angular/compiler": "21.2.0",
"@angular/core": "21.2.0",
"@angular/forms": "21.2.0",
"@angular/material": "21.2.0",
"@angular/platform-browser": "21.2.0",
"@angular/platform-browser-dynamic": "21.2.0",
"@angular/router": "21.2.0",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "^0.16.1"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^2.3.1",
"@angular-devkit/build-angular": "21.2.0",
"@angular/cli": "21.2.0",
"@angular/compiler-cli": "21.2.0",
"@angular/platform-server": "^21.2.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"jsdom": "^28.1.0",
"ng-packagr": "21.2.0",
"semantic-release": "25.0.3",
"typescript": "5.9.3",
"vitest": "^4.0.18"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "dist/ngx-back-button",
"access": "public"
}
],
"@semantic-release/github"
]
}
}