-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.06 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 3.06 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
86
87
88
{
"name": "gramli-angular-notifier",
"description": "A well designed, fully animated, highly customizable, and easy-to-use notification library for your Angular application.",
"version": "21.1.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Gramli/angular-notifier"
},
"keywords": [
"angular",
"angular17",
"angular18",
"angular19",
"angular20",
"angular21",
"notification",
"notifications",
"notifier",
"toast",
"toaster",
"snackbar",
"alert",
"alerts",
"message",
"popup",
"angular-component",
"angular-library",
"angular-standalone",
"standalone",
"standalone-components",
"ngmodule",
"typescript",
"animated",
"customizable"
],
"scripts": {
"build:demo": "ng build angular-notifier-demo --configuration production",
"build:standalone-demo": "ng build angular-notifier-standalone-demo --configuration production",
"build:library": "rimraf dist && npm run build:library:angular && npm run build:library:sass && npm run build:library:css && npm run build:library:docs && npm run build:library:package",
"build:library:angular": "ng build angular-notifier --configuration production",
"build:library:css": "sass projects/angular-notifier/src:dist/angular-notifier --style=expanded",
"build:library:docs": "copyfiles LICENSE README.md \"dist/angular-notifier\"",
"build:library:package": "node tools/update-package.js",
"build:library:sass": "copyfiles \"projects/angular-notifier/src/**/*.scss\" \"dist/angular-notifier\" --up 3",
"lint:library": "eslint projects/angular-notifier/src/**/*.ts --max-warnings 0",
"lint:library:fix": "eslint projects/angular-notifier/src/**/*.ts --max-warnings 0 --fix",
"start": "ng serve angular-notifier-demo",
"start:standalone": "ng serve angular-notifier-standalone-demo",
"test:library": "ng test angular-notifier",
"test:library:watch": "ng test angular-notifier --watch",
"test:library:upload-coverage": "codecov -f coverage/coverage-final.json"
},
"dependencies": {
"tslib": "2.8.x"
},
"devDependencies": {
"@angular/build": "^21.0.3",
"@angular/cli": "21.0.3",
"@angular/common": "21.0.5",
"@angular/compiler": "21.0.5",
"@angular/compiler-cli": "21.0.5",
"@angular/core": "21.0.5",
"@angular/platform-browser": "21.0.5",
"@angular/platform-browser-dynamic": "21.0.5",
"@types/node": "25.0.1",
"@types/web-animations-js": "2.2.x",
"@typescript-eslint/eslint-plugin": "8.49.x",
"@typescript-eslint/parser": "8.49.x",
"codecov": "^3.6.2",
"copyfiles": "2.4.x",
"eslint": "^9.0.0",
"eslint-config-prettier": "10.1.x",
"eslint-plugin-import": "2.32.x",
"eslint-plugin-prettier": "5.5.x",
"eslint-plugin-simple-import-sort": "12.1.x",
"jsdom": "^27.3.0",
"ng-packagr": "21.0.0",
"prettier": "3.7.x",
"rimraf": "6.1.x",
"rxjs": "7.8.x",
"sass": "^1.70.0",
"ts-node": "10.9.x",
"typescript": "^5.9.3",
"vitest": "^4.0.15",
"zone.js": "^0.16.0"
}
}