-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.37 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
108
109
110
111
112
113
114
115
{
"name": "@proangular/ngx-gist",
"version": "19.0.1",
"description": "An Angular Material and HighlighJs styled display box for GitHub gist and local code snippets.",
"author": "Pro Angular <webmaster@proangular.com>",
"homepage": "https://www.proangular.com",
"private": false,
"engines": {
"node": ">=20"
},
"scripts": {
"build": "ng build",
"build:prod": "ng build --configuration production",
"lint": "ng lint",
"ng": "ng",
"npm-build-package": "ng-packagr -p ng-package.json",
"postinstall": "is-ci || husky install",
"prettier": "prettier --write . --log-level silent",
"prettier:check": "prettier --check .",
"start": "ng serve",
"start:open": "ng serve --open",
"test": "ng test",
"update": "ncu -u",
"update:check": "ncu",
"watch": "ng build --watch --configuration development"
},
"peerDependencies": {
"@angular/animations": ">=19 <20",
"@angular/common": ">=19 <20",
"@angular/compiler": ">=19 <20",
"@angular/core": ">=19 <20",
"@angular/forms": ">=19 <20",
"@angular/material": ">=19 <20",
"@angular/material-luxon-adapter": ">=19 <20",
"@angular/platform-browser": ">=19 <20",
"@angular/platform-browser-dynamic": ">=19 <20",
"@angular/router": ">=19 <20",
"@ngneat/until-destroy": "^10.0.0",
"highlight.js": ">=11.5 <12",
"highlightjs-line-numbers.js": ">=2.5 <3",
"io-ts": ">=2 <3",
"io-ts-types": ">=0.5 <1",
"rxjs": ">=7.5 <9"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.6",
"@angular-eslint/builder": "18.4.3",
"@angular-eslint/eslint-plugin": "18.4.3",
"@angular-eslint/eslint-plugin-template": "18.4.3",
"@angular-eslint/schematics": "18.4.3",
"@angular-eslint/template-parser": "18.4.3",
"@angular/cli": "^19.1.6",
"@angular/compiler-cli": "^19.1.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jasmine": "~5.1.0",
"@types/node": "^18.18.0",
"@typescript-eslint/eslint-plugin": "8.17.0",
"@typescript-eslint/parser": "8.17.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.2.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-rxjs": "^5.0.3",
"eslint-plugin-rxjs-angular": "^2.0.1",
"eslint-plugin-unicorn": "^53.0.0",
"husky": "^9.1.7",
"is-ci": "^3.0.1",
"jasmine-core": "~5.5.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": "^19.1.2",
"npm-check-updates": "^17.1.11",
"prettier": "^3.4.1",
"tslib": "^2.3.0",
"typescript": "~5.7.2"
},
"contributors": [
{
"name": "Cody Tolene",
"email": "webmaster@codytolene.com",
"url": "https://www.codytolene.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ProAngular/ngx-gist.git"
},
"keywords": [
"pro",
"angular",
"gist",
"code",
"box",
"programming",
"snippet",
"ngx-gist",
"ngx"
],
"bugs": {
"url": "https://github.com/ProAngular/ngx-gist/issues"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/proangular"
},
"publishConfig": {
"access": "public"
},
"main": "src/main.ts"
}