-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
76 lines (76 loc) · 2.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
{
"name": "angular-notifier",
"description": "A well designed, fully animated, highly customizable, and easy-to-use notification library for your Angular application.",
"version": "14.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dominique-mueller/angular-notifier"
},
"keywords": [
"angular",
"angular2",
"ng",
"ng2",
"notifier",
"notification",
"notifications",
"toast",
"toasts",
"alert",
"library"
],
"scripts": {
"build:demo": "ng build angular-notifier-demo --configuration production",
"build:library": "rimraf -r 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 \"docs/**\" CHANGELOG.md MIGRATION-GUIDE.md 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",
"test:library": "ng test angular-notifier",
"test:library:upload-coverage": "codecov -f coverage/coverage-final.json"
},
"dependencies": {
"tslib": "2.4.x"
},
"peerDependencies": {
"@angular/common": ">= 16.0.0 < 17.0.0",
"@angular/core": ">= 16.0.0 < 17.0.0"
},
"devDependencies": {
"@angular-builders/jest": "16.0.x",
"@angular-devkit/build-angular": "16.0.x",
"@angular/cli": "16.0.x",
"@angular/common": "16.0.x",
"@angular/compiler": "16.0.x",
"@angular/compiler-cli": "16.0.x",
"@angular/core": "16.0.x",
"@angular/platform-browser": "16.0.x",
"@angular/platform-browser-dynamic": "16.0.x",
"@types/jest": "29.5.x",
"@types/node": "16.x",
"@types/web-animations-js": "2.2.x",
"@typescript-eslint/eslint-plugin": "5.59.x",
"@typescript-eslint/parser": "5.59.x",
"codecov": "3.8.x",
"copyfiles": "2.4.x",
"eslint": "8.42.x",
"eslint-config-prettier": "8.5.x",
"eslint-plugin-import": "2.26.x",
"eslint-plugin-prettier": "4.2.x",
"eslint-plugin-simple-import-sort": "8.0.x",
"jest": "29.5.x",
"ng-packagr": "16.0.x",
"prettier": "2.7.x",
"rimraf": "3.0.x",
"rxjs": "7.5.x",
"sass": "1.54.x",
"ts-node": "10.9.x",
"typescript": "4.9.x",
"zone.js": "0.13.x"
}
}