-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
107 lines (107 loc) · 3.45 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
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@ngx-loading-bar/common",
"version": "7.0.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": {
"lint": "tslint 'src/**/*.ts' 'demo/**/*.ts' -p tsconfig.json",
"lint:fix": "tslint --fix 'src/**/*.ts' 'demo/**/*.ts' -p tsconfig.json",
"format": "prettier --list-different \"**/*.{js,ts,json,css,scss,md,html}\"",
"format:fix": "prettier --write \"**/*.{js,ts,json,css,scss,md,html}\"",
"release": "standard-version",
"publish": "node .config/publish.js",
"start": "ng serve --port 4501 --open",
"build": "npm run build:core && npm run build:http-client && npm run build:router && node .config/build.js",
"build:core": "ng build --configuration production @ngx-loading-bar/core",
"build:http-client": "ng build --configuration production @ngx-loading-bar/http-client",
"build:router": "ng build --configuration production @ngx-loading-bar/router",
"gh-pages": "ng build --configuration production --base-href=\"/ngx-loading-bar/\" && ngh --dir dist/app --repo=https://[email protected]/aitboudad/ngx-loading-bar.git",
"test": "jest --coverage",
"test:watch": "jest --watch",
"bundlesize": "bundlesize",
"github-release": "conventional-github-releaser -p angular --draft"
},
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.14",
"@angular/common": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/material": "^16.2.14",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/platform-server": "^16.2.12",
"@angular/router": "^16.2.12",
"bootstrap": "^4.5.3",
"core-js": "^3.6.4",
"rxjs": "^7.4.0",
"tslib": "^2.0.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.16",
"@angular/cli": "^16.2.16",
"@angular/compiler": "^16.2.12",
"@angular/compiler-cli": "^16.2.12",
"@types/jest": "^29.5.13",
"@types/node": "^20.0.0",
"angular-cli-ghpages": "^2.0.1",
"bundlesize": "^0.18.0",
"codelyzer": "^6.0.0",
"conventional-github-releaser": "^3.1.3",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.5",
"jest": "^29.0.0",
"jest-preset-angular": "^14.0.0",
"lint-staged": "^10.2.11",
"ng-packagr": "^16.2.3",
"prettier": "^3.3.3",
"standard-version": "^7.1.0",
"tslint": "~6.1.0",
"typescript": "~5.1.6"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,json,css,scss,md,html}": [
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bundlesize": [
{
"path": "./dist/@ngx-loading-bar/core/esm5/ngx-loading-bar-core.js",
"maxSize": "2 kB"
},
{
"path": "./dist/@ngx-loading-bar/http-client/esm5/ngx-loading-bar-http-client.js",
"maxSize": "1 kB"
},
{
"path": "./dist/@ngx-loading-bar/router/esm5/ngx-loading-bar-router.js",
"maxSize": "1 kB"
}
]
}