forked from pvadam/ng2-toastr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.12 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
{
"name": "ng2-toastr",
"version": "1.3.4",
"description": "bootstrap style of toast for angular 2",
"main": "ng2-toastr.js",
"typings": "ng2-toastr.d.ts",
"scripts": {
"typings": "typings install",
"webpack": "webpack --progress --profile --bail",
"build:prod": "NODE_ENV=production webpack -p --progress --color --optimize-minimize --optimize-dedupe --optimize-occurence-order",
"build:dev": "webpack-dev-server --hot --inline --colors --display-error-details --display-cached",
"tsc": "tsc",
"tsc:w": "tsc -w",
"ngc": "ngc",
"lite": "lite-server",
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"prepublish": "gulp clean && ngc && node make.js && gulp bundle-css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PointInside/ng2-toastr.git"
},
"keywords": [
"toast",
"toaster",
"toastr",
"angular 2",
"bootstrap",
"notification"
],
"author": "Derek Shi",
"license": "ISC",
"bugs": {
"url": "https://github.com/PointInside/ng2-toastr/issues"
},
"homepage": "https://github.com/PointInside/ng2-toastr#readme",
"devDependencies": {
"@angular/common": "2.4.2",
"@angular/compiler": "2.4.2",
"@angular/core": "2.4.2",
"@angular/http": "2.4.2",
"@angular/platform-browser": "2.4.2",
"@angular/platform-browser-dynamic": "2.4.2",
"@angular/compiler-cli": "2.4.2",
"@angular/platform-server": "2.4.2",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.3",
"rxjs": "5.0.3",
"zone.js": "0.7.4",
"bootstrap": "^3.3.6",
"async": "1.5.2",
"concurrently": "^2.2.0",
"css-loader": "0.23.1",
"del": "2.2.0",
"gulp": "3.9.0",
"gulp-cssnano": "2.1.0",
"gulp-eslint": "1.1.1",
"gulp-rename": "1.2.2",
"gulp-rimraf": "~0.2",
"gulp-size": "2.0.0",
"gulp-tslint": "4.3.1",
"lite-server": "^2.2.2",
"require-dir": "0.3.0",
"style-loader": "~0.13",
"systemjs": "0.19.27",
"systemjs-builder": "0.15.6",
"ts-loader": "~0.8.2",
"tslint": "^3.15.1",
"typescript": "^2.0.2",
"typings": "^1.3.2"
},
"dependencies": {
}
}