forked from itsdevdom/angular-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.75 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.75 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
{
"name": "sp-angular-notifier-v2",
"description": "A well designed, fully animated, highly customizable, and easy-to-use notification library for your Angular application.",
"version": "12.0.0",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nirinasp/angular-notifier.git"
},
"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": ">= 15.2.0"
},
"devDependencies": {
"@angular-builders/jest": "^15.0.0",
"@angular-devkit/build-angular": "^15.2.0",
"@angular/cli": "^15.2.11",
"@angular/common": "^15.2.0",
"@angular/compiler": "^15.2.0",
"@angular/compiler-cli": "^15.2.0",
"@angular/core": "^15.2.10",
"@angular/platform-browser": "^15.2.0",
"@angular/platform-browser-dynamic": "^15.2.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.11.0",
"@types/web-animations-js": "^2.2.11",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"codecov": "^3.8.3",
"copyfiles": "^2.4.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0",
"jest": "^29.4.0",
"ng-packagr": "^15.2.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"rxjs": "~7.8.0",
"sass": "^1.62.0",
"ts-node": "^10.9.1",
"typescript": "~4.9.5",
"zone.js": "~0.12.0"
}
}