-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
package.json
103 lines (103 loc) · 3.41 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
{
"name": "ngx-markdown",
"version": "18.1.0",
"description": "Angular library that uses marked to parse markdown to html combined with Prism.js for synthax highlights",
"homepage": "https://github.com/jfcere/ngx-markdown",
"license": "MIT",
"author": {
"name": "Jean-Francois Cere",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/jfcere/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 node_modules/ngx-markdown && linklocal",
"lint": "yarn lint:lib && yarn lint:demo",
"lint:demo": "ng lint demo",
"lint:lib": "ng lint lib",
"lint:ci": "ng lint lib --format checkstyle > eslint.xml",
"type-check:demo": "tsc --project ./demo/tsconfig.app.json --noEmit",
"type-check:lib": "tsc --project ./lib/tsconfig.lib.json --noEmit",
"test": "ng test",
"coveralls": "cat \"./coverage/lcov.info\" | \"./node_modules/coveralls/bin/coveralls.js\"",
"gh-pages:build": "yarn build:demo --aot --base-href /ngx-markdown/",
"gh-pages:postbuild": "cpy ./dist/demo/3rdpartylicenses.txt ./dist/demo/browser",
"gh-pages:deploy": "angular-cli-ghpages --dir=\"dist/demo/browser\" --name=\"CircleCI\" --email=\"[email protected]\" --no-silent",
"publish:lib": "npm publish ./dist/lib",
"publish:beta": "npm publish ./dist/lib --tag beta"
},
"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.0",
"gumshoejs": "^5.1.2",
"hammerjs": "~2.0.8",
"katex": "^0.16.2",
"marked": "^12.0.0",
"marked-gfm-heading-id": "^3.1.3",
"mermaid": "^11.2.1",
"ngx-markdown": "file:lib",
"prismjs": "^1.29.0",
"rxjs": "~6.5.3",
"tslib": "^2.3.0",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.1",
"@angular/cli": "~18.0.1",
"@angular/compiler-cli": "^18.0.0",
"@angular/language-service": "^18.0.0",
"@types/jasmine": "~5.1.0",
"angular-cli-ghpages": "^0.5.3",
"angular-eslint": "^18.3.1",
"coveralls": "^3.1.1",
"cpy-cli": "^3.1.1",
"eslint": "^9.11.1",
"eslint-formatter-checkstyle": "^8.40.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"jasmine-core": "~5.1.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",
"karma-junit-reporter": "^2.0.1",
"linklocal": "^2.8.2",
"ng-packagr": "^18.0.0",
"rimraf": "^2.7.0",
"typescript": "~5.4.2",
"typescript-eslint": "8.2.0"
}
}