-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.78 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
{
"name": "@fsegurai/ngx-markdown",
"version": "18.1.0",
"description": "Angular library that uses marked to parse markdown to html combined with Prism.js for syntax highlights",
"homepage": "https://github.com/fsegurai/ngx-markdown",
"license": "MIT",
"author": {
"name": "Fabián Segura",
"url": "https://www.fsegurai.com/"
},
"repository": {
"type": "git",
"url": "https://github.com/fsegurai/ngx-markdown"
},
"keywords": [
"angular",
"ngx",
"markdown",
"parser",
"marked",
"marked.js",
"prism",
"prism.js",
"katex",
"emoji",
"clipboard",
"clipboard.js"
],
"scripts": {
"ng": "ng",
"start": "yarn link:lib && ng serve",
"build:demo": "ng build demo --configuration production",
"build:lib": "ng build lib --configuration production",
"postBuild:lib": "cpy ./README.md ./dist/lib && cpy ./LICENSE ./dist/lib",
"link:lib": "rimraf --glob node_modules/ngx-markdown && linklocal",
"lint": "yarn lint:lib && yarn lint:demo",
"lint:lib": "ng lint lib",
"lint:demo": "ng lint demo",
"type-check:lib": "tsc --project ./lib/tsconfig.lib.json --noEmit",
"type-check:demo": "tsc --project ./demo/tsconfig.app.json --noEmit",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:ci_cd": "ng test --no-watch --no-progress --browsers=ChromeHeadless",
"gh-pages:build": "yarn build:demo --aot --base-href=./",
"gh-pages:copy404": "cpy ./dist/demo/browser/index.html . --rename=404.html",
"gh-pages:postBuild": "cpy ./dist/demo/3rdpartylicenses.txt ./dist/demo/browser --flat"
},
"dependencies": {
"@angular/animations": "^18.0.0",
"@angular/cdk": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "^18.0.0",
"@angular/material": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"clipboard": "^2.0.11",
"emoji-toolkit": "^9.0.1",
"gumshoejs": "^5.1.2",
"hammerjs": "~2.0.8",
"katex": "0.16.11",
"marked": "14.1.3",
"marked-gfm-heading-id": "^4.1.0",
"mermaid": "^11.4.0",
"ngx-markdown": "file:lib",
"prismjs": "^1.29.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.1",
"@angular-devkit/core": "18.2.10",
"@angular-devkit/schematics": "18.0.1",
"@angular-eslint/builder": "~18.4.0",
"@angular-eslint/eslint-plugin": "~18.4.0",
"@angular-eslint/eslint-plugin-template": "~18.4.0",
"@angular-eslint/schematics": "~18.4.0",
"@angular-eslint/template-parser": "~18.4.0",
"@angular/cli": "~18.0.1",
"@angular/compiler-cli": "^18.0.0",
"@angular/language-service": "^18.0.0",
"@eslint/js": "^9.14.0",
"@types/jasmine": "~5.1.4",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@typescript-eslint/types": "8.14.0",
"@typescript-eslint/utils": "^8.14.0",
"angular-eslint": "^18.4.0",
"coveralls": "^3.1.1",
"cpy-cli": "^5.0.0",
"eslint": "^9.14.0",
"eslint-import-resolver-typescript": "~3.6.3",
"eslint-plugin-import": "~2.31.0",
"eslint-plugin-jsdoc": "~50.5.0",
"eslint-plugin-prefer-arrow": "~1.2.3",
"jasmine-core": "~5.4.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"karma-junit-reporter": "^2.0.1",
"linklocal": "^2.8.2",
"ng-packagr": "^18.0.0",
"rimraf": "^6.0.1",
"typescript": "~5.5.4",
"typescript-eslint": "^8.14.0"
}
}