-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.79 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
{
"name": "@stanvanheumen/ngx-notifications",
"version": "1.0.0",
"license": "MIT",
"description": "A simple library that allows you to notify your users in your Angular 5+ app.",
"author": {
"name": "Stan van Heumen",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/stan-van-heumen"
},
"repository": {
"type": "git",
"url": "https://github.com/stanvanheumen/ngx-notifications.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/stanvanheumen/ngx-notifications.git/issues"
},
"homepage": "https://github.com/stanvanheumen/ngx-notifications#readme",
"scripts": {
"ng": "ng",
"start": "ng serve",
"package": "ng-packagr -p ./library/ng-package.json && copyfiles README.md dist",
"build:development": "ng build",
"build:production": "ng build --target production --build-optimizer --vendor-chunk"
},
"dependencies": {
"@angular/animations": "^5.2.9",
"@angular/common": "^5.2.9",
"@angular/compiler": "^5.2.9",
"@angular/core": "^5.2.9",
"@angular/forms": "^5.2.9",
"@angular/http": "^5.2.9",
"@angular/platform-browser": "^5.2.9",
"@angular/platform-browser-dynamic": "^5.2.9",
"@angular/router": "^5.2.9",
"@stanvanheumen/ngx-translations": "^1.1.0",
"core-js": "^2.5.4",
"rxjs": "^5.5.8",
"zone.js": "^0.8.25"
},
"devDependencies": {
"@angular/cli": "^1.7.4",
"@angular/compiler-cli": "^5.2.9",
"@angular/language-service": "^5.2.9",
"copyfiles": "^2.0.0",
"ng-packagr": "^2.4.1",
"tsickle": "~0.27.5",
"tslib": "^1.9.0",
"typescript": "~2.5.3"
}
}