forked from jfcere/ngx-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.71 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
{
"name": "ngx-markdown",
"version": "17.1.1",
"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": "^17.0.0",
"@angular/cdk": "^17.0.0",
"@angular/common": "^17.0.0",
"@angular/compiler": "^17.0.0",
"@angular/core": "^17.0.0",
"@angular/flex-layout": "15.0.0-beta.42",
"@angular/forms": "^17.0.0",
"@angular/material": "^17.0.0",
"@angular/platform-browser": "^17.0.0",
"@angular/platform-browser-dynamic": "^17.0.0",
"@angular/router": "^17.0.0",
"clipboard": "^2.0.11",
"emoji-toolkit": "^8.0.0",
"gumshoejs": "^5.1.2",
"hammerjs": "~2.0.8",
"katex": "^0.16.2",
"marked": "^9.1.2",
"marked-gfm-heading-id": "^3.1.0",
"mermaid": "^10.6.0",
"ngx-markdown": "file:lib",
"prismjs": "^1.29.0",
"rxjs": "~6.5.3",
"tslib": "^2.3.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular-eslint/builder": "~17.0.0",
"@angular-eslint/eslint-plugin": "~17.0.0",
"@angular-eslint/eslint-plugin-template": "~17.0.0",
"@angular-eslint/schematics": "~17.0.0",
"@angular-eslint/template-parser": "~17.0.0",
"@angular/cli": "~17.0.0",
"@angular/compiler-cli": "^17.0.0",
"@angular/language-service": "^17.0.0",
"@types/jasmine": "~5.1.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"angular-cli-ghpages": "^0.5.3",
"coveralls": "^3.1.1",
"cpy-cli": "^3.1.1",
"eslint": "^8.53.0",
"eslint-import-resolver-typescript": "~3.5.2",
"eslint-plugin-import": "~2.26.0",
"eslint-plugin-jsdoc": "~39.6.2",
"eslint-plugin-prefer-arrow": "~1.2.3",
"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": "^17.0.0",
"rimraf": "^2.7.0",
"typescript": "~5.2.2"
}
}