forked from aitboudad/ngx-loading-bar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.23 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.23 KB
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
96
97
98
99
100
{
"name": "@ngx-loading-bar/common",
"version": "2.2.0",
"license": "MIT",
"author": "Abdellatif Ait boudad",
"description": "A fully automatic loading bar / progress bar with zero configuration for Angular app (http, http-client and router).",
"keywords": [
"angular",
"angular2",
"ng",
"ng2",
"loading",
"loadingbar",
"progress",
"progressbar"
],
"repository": {
"url": "https://github.com/aitboudad/ngx-loading-bar.git",
"type": "git"
},
"scripts": {
"postinstall": "patch --forward node_modules/ng-packagr/lib/ng-v5/entry-point/ts/compile-ngc.transform.js .config/ng-packagr.patch || true",
"lint": "tslint 'src/**/*.ts' 'demo/**/*.ts' -p tsconfig.json",
"lint:fix": "tslint --fix 'src/**/*.ts' 'demo/**/*.ts' -p tsconfig.json",
"release": "standard-version && npm run build && node .config/publish.js",
"start": "ng serve --port 4501 --open",
"build": "npm run build:core && npm run build:http && npm run build:http-client && npm run build:router && node .config/build.js",
"build:core": "ng-packagr -p packages/core/ng-package.json",
"build:http": "ng-packagr -p packages/http/ng-package.json",
"build:http-client": "ng-packagr -p packages/http-client/ng-package.json",
"build:router": "ng-packagr -p packages/router/ng-package.json",
"gh-pages": "ng build --prod --no-aot --base-href=\"/ngx-loading-bar/\" && ngh --dir dist/app --repo=https://GH_TOKEN@github.com/aitboudad/ngx-loading-bar.git",
"test": "jest --coverage",
"test:watch": "jest --watch",
"bundlesize": "bundlesize"
},
"dependencies": {
"@angular/animations": "^5.2.11",
"@angular/cdk": "5.2.4",
"@angular/cli": "^1.7.4",
"@angular/common": "^5.2.11",
"@angular/compiler": "^5.2.11",
"@angular/compiler-cli": "^5.2.11",
"@angular/core": "^5.2.11",
"@angular/forms": "^5.2.11",
"@angular/http": "^5.2.11",
"@angular/material": "5.2.4",
"@angular/platform-browser": "^5.2.11",
"@angular/platform-browser-dynamic": "^5.2.11",
"@angular/router": "^5.2.11",
"@types/jest": "^22.2.2",
"@types/node": "^9.6.20",
"angular-cli-ghpages": "^0.5.2",
"codelyzer": "^4.3.0",
"core-js": "^2.5.7",
"cz-conventional-changelog": "^2.1.0",
"jest": "^22.4.4",
"jest-preset-angular": "^5.2.1",
"ng-packagr": "2.4.2",
"rxjs": "^6.2.0",
"rxjs-compat": "^6.2.0",
"standard-version": "^4.4.0",
"tslint": "^5.9.0",
"typescript": "~2.7.2",
"zone.js": "^0.8.20",
"bundlesize": "^0.17.0"
},
"jest": {
"preset": "jest-preset-angular",
"setupTestFrameworkScriptFile": "<rootDir>/setupJest.ts",
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.spec.json"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bundlesize": [
{
"path": "./dist/core/esm5/ngx-loading-bar-core.js",
"maxSize": "2 kB"
},
{
"path": "./dist/http/esm5/ngx-loading-bar-http.js",
"maxSize": "1 kB"
},
{
"path": "./dist/http-client/esm5/ngx-loading-bar-http-client.js",
"maxSize": "1 kB"
},
{
"path": "./dist/router/esm5/ngx-loading-bar-router.js",
"maxSize": "1 kB"
}
]
}