-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2 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
{
"name": "@uzenith360/ngx-unsaved-changes",
"version": "0.0.0",
"description": "An Angular 'canDeactivate' route guard to warn about unsaved form or page data",
"scripts": {
"clean": "rm -rf ./dist",
"ng": "ng",
"start": "ng serve",
"build": "npm run clean && ng build ngx-unsaved-changes",
"watch": "ng build --watch --configuration development",
"prepack": "npm run build",
"test": "ng test ngx-unsaved-changes",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/uzenith360/ngx-unsaved-changes.git"
},
"keywords": [
"typescript",
"angular"
],
"author": "@uzenith360",
"license": "ISC",
"bugs": {
"url": "https://github.com/uzenith360/ngx-unsaved-changes/issues"
},
"homepage": "https://github.com/uzenith360/ngx-unsaved-changes#readme",
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public",
"tag": "latest"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@angular/animations": "^19.0.4",
"@angular/cdk": "^19.0.3",
"@angular/common": "^19.0.4",
"@angular/compiler": "^19.0.4",
"@angular/core": "^19.0.4",
"@angular/forms": "^19.0.4",
"@angular/material": "^19.0.3",
"@angular/platform-browser": "^19.0.4",
"@angular/platform-browser-dynamic": "^19.0.4",
"@angular/router": "^19.0.4",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.5",
"@angular/cli": "^19.0.5",
"@angular/compiler-cli": "^19.0.4",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"husky": "^8.0.2",
"jasmine-core": "~4.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^19.0.1",
"typescript": "~5.5.4"
}
}