-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.14 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.14 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
{
"name": "log4ngx",
"version": "20.1.0",
"description": "A Typescript logging framework for Angular projects",
"author": "David Geary <david@secondbounce.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/secondbounce/log4ngx.git"
},
"bugs": {
"url": "https://github.com/secondbounce/log4ngx/issues"
},
"keywords": [
"angular",
"log",
"log4j",
"logger",
"logging",
"typescript"
],
"private": true,
"type": "module",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build-lib": "ng build log4ngx",
"build-docs": "npx typedoc",
"build-demo": "ng build demo",
"build": "npm run build-lib && npm run build-demo && npm run build-docs",
"watch-lib": "ng build log4ngx --watch --configuration development",
"watch-docs": "npx typedoc --watch",
"test": "ng test",
"test-coverage": "ng test --no-watch --code-coverage",
"test-coverage-watch": "ng test --code-coverage",
"lint": "ng lint"
},
"prettier": {
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"dependencies": {
"@angular/common": "^20.3.0",
"@angular/compiler": "^20.3.0",
"@angular/core": "^20.3.0",
"@angular/forms": "^20.3.0",
"@angular/platform-browser": "^20.3.0",
"@angular/router": "^20.3.0",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.3.14",
"@angular/cli": "^20.3.14",
"@angular/compiler-cli": "^20.3.0",
"@stylistic/eslint-plugin": "^5.1.0",
"@types/jasmine": "~5.1.0",
"angular-eslint": "^20.1.1",
"eslint": "^9.39.0",
"eslint-plugin-jsdoc": "^62.0.0",
"eslint-plugin-unicorn": "^62.0.0",
"jasmine-core": "~5.13.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"ng-packagr": "^20.3.0",
"typedoc": "^0.28.16",
"typedoc-plugin-coverage": "^4.0.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.53.0"
}
}