forked from jfcere/ngx-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.63 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
{
"name": "@kensingtontech/ngx-markdown",
"version": "12.0.1",
"description": "Angular library that uses marked to parse markdown to html combined with Prism.js for synthax highlights",
"homepage": "https://github.com/KensingtonTech/ngx-markdown",
"license": "MIT",
"author": {
"name": "Jean-Francois Cere",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/KensingtonTech/ngx-markdown.git"
},
"keywords": [
"angular",
"ngx",
"markdown",
"parser",
"marked",
"marked.js",
"prism",
"prism.js",
"katex",
"emoji"
],
"scripts": {
"ng": "ng",
"build": "ng build lib --configuration production",
"postbuild": "cpx ./README.md ./dist/lib && cpx ./LICENSE ./dist/lib",
"link": "rimraf node_modules/ngx-markdown && linklocal",
"lint": "ng lint lib",
"lint:ci": "ng lint lib --format checkstyle > eslint.xml",
"type-check": "tsc --project ./lib/tsconfig.lib.json --noEmit",
"test": "ng test",
"coveralls": "cat \"./coverage/lcov.info\" | \"./node_modules/coveralls/bin/coveralls.js\"",
"publish": "npm publish ./dist/lib"
},
"dependencies": {
"@angular/common": "~12.0.0",
"@angular/compiler": "~12.0.0",
"@angular/core": "~12.0.0",
"@angular/platform-browser": "~12.0.0",
"@angular/platform-browser-dynamic": "~12.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.1.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~12.0.0",
"@angular-eslint/builder": "~12.0.0",
"@angular-eslint/eslint-plugin": "~12.0.0",
"@angular-eslint/eslint-plugin-template": "~12.0.0",
"@angular-eslint/template-parser": "~12.0.0",
"@angular/cli": "~12.0.0",
"@angular/compiler-cli": "~12.0.0",
"@angular/language-service": "~12.0.0",
"@types/jasmine": "~3.6.0",
"@types/marked": "^2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "4.23.0",
"@typescript-eslint/parser": "4.23.0",
"angular-cli-ghpages": "^0.5.3",
"coveralls": "^2.13.3",
"cpx": "^1.5.0",
"eslint": "^7.26.0",
"eslint-import-resolver-typescript": "~2.4.0",
"eslint-plugin-import": "~2.22.1",
"eslint-plugin-jsdoc": "~34.1.0",
"eslint-plugin-prefer-arrow": "~1.2.3",
"jasmine-core": "~3.7.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-junit-reporter": "^2.0.1",
"linklocal": "^2.8.2",
"marked": "^2.0.5",
"ng-packagr": "^12.0.0",
"rimraf": "^2.7.0",
"typescript": "~4.2.3"
}
}