forked from devyumao/angular2-busy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.62 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
{
"name": "angular2-busy",
"description": "Angular 2 Busy: show busy/loading indicators on any promise, or on any Observable's subscription",
"version": "2.0.4",
"repository": {
"type": "git",
"url": "git+https://github.com/devyumao/angular2-busy.git"
},
"keywords": [
"angular",
"angular2",
"busy",
"loading",
"angular2-busy",
"ng2-busy"
],
"author": "Yumao",
"license": "MIT",
"main": "index.js",
"typings": "",
"homepage": "https://github.com/devyumao/angular2-busy",
"bugs": {
"url": "https://github.com/devyumao/angular2-busy"
},
"scripts": {
"build": "cross-env NODE_ENV=busy webpack --progress",
"watch": "cross-env NODE_ENV=busy webpack --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base build",
"build:busy": "npm run build",
"watch:busy": "npm run watch",
"build:demo": "cross-env NODE_ENV=demo webpack --progress",
"watch:demo": "cross-env NODE_ENV=demo webpack-dev-server --inline --progress --profile --colors --watch --display-error-details --display-cached --content-base demo/asset",
"test": "cross-env NODE_ENV=test webpack --inline --progress --colors --watch --content-base test",
"ngc": "node_modules/.bin/ngc",
"tsc": "node_modules/.bin/tsc"
},
"peerDependencies": {
"@angular/animations": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"rxjs": "^5.0.0"
},
"devDependencies": {
"@angular/animations": "^4.0.1",
"@angular/common": "^4.0.1",
"@angular/compiler": "^4.0.1",
"@angular/compiler-cli": "^4.0.1",
"@angular/core": "^4.0.1",
"@angular/forms": "^4.0.1",
"@angular/http": "^4.0.1",
"@angular/platform-browser": "^4.0.1",
"@angular/platform-browser-dynamic": "^4.0.1",
"@angular/router": "^4.0.1",
"@types/core-js": "^0.9.41",
"autoprefixer": "^6.3.7",
"awesome-typescript-loader": "^0.19.1",
"bootstrap": "^4.0.0-alpha.2",
"compression-webpack-plugin": "^0.3.2",
"copy-webpack-plugin": "^3.0.1",
"core-js": "^2.4.1",
"cross-env": "^3.2.3",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.28.0",
"install": "^0.8.7",
"jasmine-core": "^2.4.1",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"postcss-loader": "^0.9.1",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.3",
"rxjs": "~5.1.1",
"ts-loader": "^0.8.2",
"tslint": "~4.5.0",
"typescript": "~2.2.0",
"typings": "^0.8.1",
"webpack": "^1.12.15",
"webpack-dev-server": "^1.14.1",
"zone.js": "^0.8.5"
}
}