This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 3.2 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
{
"name": "ng-catcher",
"version": "14.0.0-beta.1",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"clean:b:demo": "rimraf ./dist/public-js/ng-catcher-demo",
"clean:b:ng-catcher": "rimraf ./dist/public-js/ng-catcher",
"clean:c:demo": "rimraf ./coverage/ng-catcher-demo",
"clean:c:ng-catcher": "rimraf ./coverage/ng-catcher",
"build:demo": "npm run clean:b:demo && ./node_modules/.bin/ng build --configuration production",
"build:ng-catcher": "npm run clean:b:ng-catcher && ./node_modules/.bin/ng build --configuration production @public-js/ng-catcher",
"lint:check": "eslint . --ext .js,.ts --cache --cache-strategy content",
"lint:fix": "eslint . --ext .js,.ts --cache --cache-strategy content --fix",
"cover:ng-catcher": "npm run clean:c:ng-catcher && ./node_modules/.bin/ng test @public-js/ng-catcher --code-coverage",
"npm:dry:ng-catcher": "npm run build:ng-catcher && npm publish ./dist/public-js/ng-catcher --access public --dry-run",
"npm:pub:ng-catcher": "npm run build:ng-catcher && npm publish ./dist/public-js/ng-catcher --access public",
"___ Miscellaneous ___": "",
"man:dev:update": "keep-updated update --audit-fix",
"prepare": "is-ci || husky install"
},
"private": true,
"dependencies": {
"@angular/common": "^14.0.3",
"@angular/compiler": "^14.0.3",
"@angular/core": "^14.0.3",
"@angular/platform-browser": "^14.0.3",
"@angular/platform-browser-dynamic": "^14.0.3",
"@angular/router": "^14.0.3",
"rxjs": "~7.5.0",
"tslib": "^2.4.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.3",
"@angular/cli": "^14.0.3",
"@angular/compiler-cli": "^14.0.3",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@public-js/keep-updated": "latest",
"@types/jasmine": "^4.0.0",
"@types/node": "^16.11.0",
"@typescript-eslint/eslint-plugin": "5.24.0",
"@typescript-eslint/parser": "5.24.0",
"core-js": "^3.22.0",
"cross-env": "^7.0.3",
"eslint": "8.15.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-rxjs": "^5.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^8.0.0",
"is-ci": "^3.0.0",
"jasmine-core": "^4.0.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.2",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^5.0.0",
"karma-spec-reporter": "~0.0.30",
"lint-staged": "^13.0.0",
"ng-packagr": "^14.0.2",
"prettier": "2.7.1",
"rimraf": "^3.0.0",
"ts-node": "~8.3.0",
"tsutils": "^3.21.0",
"typescript": "~4.6.4"
},
"keepUpdated": [
"@angular-devkit/build-angular",
"@angular-eslint/*",
"@angular/*",
"@public-js/*",
"@types/*",
"@typescript-eslint/*",
"eslint",
"eslint-config-prettier",
"eslint-plugin-*",
"husky",
"is-ci",
"jasmine-*",
"karma",
"karma-*",
"lint-staged",
"tslib",
"typescript",
"zone.js"
],
"lint-staged": {
"*.{js,ts}": "eslint --fix"
},
"engines": {
"node": "^16.0.0",
"npm": "^8.0.0"
}
}