forked from dominique-mueller/angular-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.84 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "angular-notifier",
"description": "A well designed, fully animated, highly customizable, and easy-to-use notification library for your Angular application.",
"version": "4.1.1",
"author": {
"name": "Dominique Müller",
"email": "[email protected]",
"url": "https://www.devdom.io/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dominique-mueller/angular-notifier.git"
},
"homepage": "https://github.com/dominique-mueller/angular-notifier",
"bugs": {
"url": "https://github.com/dominique-mueller/angular-notifier/issues"
},
"keywords": [
"angular",
"angular2",
"ng",
"ng2",
"notifier",
"notification",
"notifications",
"toast",
"toasts",
"alert",
"library",
"module",
"js"
],
"scripts": {
"build": "npm run build:js && npm run build:sass && npm run build:css",
"build:sass": "copyfiles \"src/lib/**/*.scss\" dist --up 2",
"build:css": "node-sass src/lib --output dist --source-map true --output-style expanded",
"build:js": "angular-package-builder .angular-package.json",
"clean": "rimraf -r dist/**",
"release": "automatic-release",
"release:copy": "copyfiles \"docs/**\" CHANGELOG.md MIGRATION-GUIDE.md LICENSE README.md dist",
"release:npm": "cd dist && npm publish && cd ..",
"start": "webpack-dev-server --config webpack.dev.config.js",
"test:coverage": "codecov -f coverage/coverage-final.json",
"test": "jest --config jest.config.json --runInBand --no-cache"
},
"peerDependencies": {
"@angular/common": ">= 6.0.0 < 9.0.0",
"@angular/core": ">= 6.0.0 < 9.0.0",
"rxjs": ">= 6.0.0 < 9.0.0"
},
"devDependencies": {
"@angular/common": "6.1.x",
"@angular/compiler": "6.1.x",
"@angular/compiler-cli": "6.1.x",
"@angular/core": "6.1.x",
"@angular/platform-browser": "6.1.x",
"@angular/platform-browser-dynamic": "6.1.x",
"@types/node": "10.5.x",
"@types/web-animations-js": "2.2.x",
"angular-package-builder": "2.0.x",
"angular2-template-loader": "0.6.x",
"automatic-release": "1.1.x",
"awesome-typescript-loader": "5.2.x",
"browser-sync": "2.24.x",
"browser-sync-webpack-plugin": "2.0.x",
"codecov": "3.0.x",
"copyfiles": "2.0.x",
"core-js": "2.5.x",
"css-loader": "0.28.x",
"friendly-errors-webpack-plugin": "1.7.x",
"html-webpack-plugin": "3.2.x",
"jest": "23.2.x",
"jest-preset-angular": "5.2.x",
"node-sass": "4.9.x",
"progress-bar-webpack-plugin": "1.11.x",
"raw-loader": "0.5.x",
"reflect-metadata": "0.1.x",
"rimraf": "2.6.x",
"rxjs": "6.2.x",
"sass-loader": "7.0.x",
"script-ext-html-webpack-plugin": "2.0.x",
"simple-progress-webpack-plugin": "1.1.x",
"source-map-loader": "0.2.x",
"style-loader": "0.21.x",
"ts-jest": "22.4.x",
"typescript": "2.7.x",
"web-animations-js": "2.3.x",
"webpack": "4.13.x",
"webpack-cli": "3.0.x",
"webpack-dev-server": "3.1.x",
"zone.js": "0.9.1"
}
}