forked from Stabzs/Angular2-Toaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.24 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
95
{
"name": "angular2-toaster",
"version": "5.0.1",
"description": "An Angular Toaster Notification library based on AngularJS-Toaster",
"main": "bundles/angular2-toaster.umd.js",
"module": "angular2-toaster.js",
"typings": "angular2-toaster.d.ts",
"scripts": {
"start": "npm run test && http-server -c-1 -o -p 8875 .",
"prebuild": "rimraf ./dist && npm run lint",
"build": "node_modules/.bin/ngc -p ./tsconfig-aot.json && npm run rollup",
"rollup": "node_modules/.bin/rollup -c ./config/rollup.config.js && npm run uglifyjs && npm run sass && npm run uglifycss && npm run copy",
"uglifycss": "node_modules/.bin/uglifycss ./src/toaster.css > ./src/toaster.min.css",
"uglifyjs": "node_modules/.bin/uglifyjs ./dist/bundles/angular2-toaster.umd.js -o ./dist/bundles/angular2-toaster.umd.min.js",
"sass": "node_modules/.bin/node-sass --output-style=expanded src/toaster.scss src/toaster.css",
"copy": "cpx package.json dist && cpx LICENSE dist && cpx README.md dist && npm run copystyles",
"copystyles": "cpx ./src/toaster.css dist && cpx ./src/toaster.min.css dist && cpx ./src/toaster.scss dist/src",
"lint": "node_modules/.bin/tslint --type-check -p tsconfig-aot.json -c tslint.json 'src/**/*.ts' -e 'src/**/*spec.ts'",
"test": "karma start karma.conf.js"
},
"keywords": [
"angular",
"angular2",
"angular4",
"angular5",
"angularjs-toaster",
"angular-toaster",
"angular2-toaster",
"toast",
"toaster",
"notification",
"growl"
],
"author": "Stabzs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stabzs/Angular2-Toaster.git"
},
"bugs": {
"url": "https://github.com/stabzs/Angular2-Toaster/issues"
},
"peerDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0",
"rxjs": "^5.4.2"
},
"devDependencies": {
"@angular/animations": "5.2.3",
"@angular/cli": "1.7.3",
"@angular/common": "5.2.3",
"@angular/compiler": "5.2.3",
"@angular/compiler-cli": "5.2.3",
"@angular/core": "5.2.3",
"@angular/http": "5.2.3",
"@angular/language-service": "5.2.3",
"@angular/platform-browser": "5.2.3",
"@angular/platform-browser-dynamic": "5.2.3",
"@angular/platform-server": "5.2.3",
"@angular/router": "5.2.3",
"@types/jasmine": "2.5.47",
"@types/node": "7.0.12",
"awesome-typescript-loader": "3.4.1",
"codelyzer": "3.0.1",
"core-js": "2.4.1",
"coveralls": "2.11.14",
"cpx": "1.5.0",
"http-server": "0.11.1",
"istanbul-instrumenter-loader": "3.0.0",
"jasmine-core": "2.5.2",
"karma": "1.5.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-jasmine": "1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-remap-coverage": "~0.1.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "2.0.9",
"node-sass": "^4.7.2",
"reflect-metadata": "0.1.10",
"remap-istanbul": "0.10.1",
"rimraf": "2.5.4",
"rollup": "0.55.3",
"rxjs": "^5.4.2",
"source-map-loader": "0.2.3",
"ts-helpers": "1.1.2",
"tslint": "5.3.2",
"typescript": "^2.7.2",
"typings": "2.1.0",
"uglify-js": "3.3.9",
"uglifycss": "0.0.27",
"zone.js": "0.8.5"
}
}