-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathpackage.json
59 lines (59 loc) · 1.68 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
{
"name": "ng2-toastr",
"version": "0.1.3",
"description": "bootstrap style of toast for angular 2",
"main": "index.js",
"scripts": {
"prepublish": "gulp clean && ./node_modules/.bin/tsc && node make.js && gulp bundle-css",
"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",
"lite": "lite-server",
"start": "concurrent \"npm run tsc:w\" \"npm run lite\" "
},
"repository": {
"type": "git",
"url": "git+https://github.com/PointInside/ng2-toastr.git"
},
"keywords": [
"toast",
"toastr",
"angular 2",
"bootstrap"
],
"author": "Derek Shi",
"license": "ISC",
"bugs": {
"url": "https://github.com/PointInside/ng2-toastr/issues"
},
"homepage": "https://github.com/PointInside/ng2-toastr#readme",
"devDependencies": {
"angular2": "2.0.0-beta.2",
"systemjs": "~0.19",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"rxjs": "5.0.0-beta.0",
"concurrently": "^1.0.0",
"lite-server": "^1.3.1",
"typescript": "^1.7.5",
"tslint": "~3.3",
"gulp": "3.9.0",
"gulp-rimraf": "~0.2",
"gulp-eslint": "1.1.1",
"gulp-size": "2.0.0",
"gulp-tslint": "4.3.1",
"gulp-cssnano": "2.1.0",
"gulp-rename": "1.2.2",
"require-dir": "0.3.0",
"ts-loader": "~0.8",
"css-loader": "~0.23",
"style-loader": "~0.13",
"async": "1.5.2",
"del": "2.2.0",
"systemjs-builder": "0.15.6",
"webpack": "~1.12.12",
"webpack-dev-server": "~1.14.1"
},
"dependencies": {}
}