forked from garciparedes/ng-katex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.38 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
{
"name": "ng-katex-2",
"version": "2.1.3",
"description": "Angular module to write beautiful math expressions with TeX syntax boosted by KaTeX library",
"main": "ng-katex.umd.js",
"jsnext:main": "ng-katex.esm.js",
"module": "ng-katex.esm.js",
"types": "ng-katex.d.ts",
"scripts": {
"start": "ng serve demo",
"watch": "ng build ng-katex --watch",
"build": "ng build ng-katex",
"build:demo": "ng build ng-katex && ng build demo",
"publish:demo": "ng build --prod --base-href=\"https://garciparedes.me/ng-katex/\" demo && rm -rf docs && cp -R dist/demo docs",
"publish": "cp README.md LICENSE dist/ng-katex && cd dist/ng-katex && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garciparedes/ng-katex.git"
},
"author": {
"name": "Sergio García Prado",
"email": "[email protected]",
"url": "https://garciparedes.me"
},
"keywords": [
"angular",
"katex",
"latex",
"math",
"package",
"typescript",
"angular2",
"typesetting",
"formulae",
"library",
"module",
"angular-module",
"angular-directive",
"angular-component"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/garciparedes/ng-katex/issues"
},
"homepage": "https://github.com/garciparedes/ng-katex#readme",
"dependencies": {
"extract-math": "^1.0.5",
"katex": "^0.11.0"
},
"peerDependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "0.803.23",
"@angular-devkit/build-ng-packagr": "0.803.23",
"@angular/animations": "8.2.14",
"@angular/cli": "11.2.9",
"@angular/common": "8.2.14",
"@angular/compiler": "8.2.14",
"@angular/compiler-cli": "8.2.14",
"@angular/core": "8.2.14",
"@angular/forms": "8.2.14",
"@angular/language-service": "8.2.14",
"@angular/platform-browser": "8.2.14",
"@angular/platform-browser-dynamic": "8.2.14",
"@angular/router": "8.2.14",
"@types/katex": "0.11.0",
"clean-css": "4.2.2",
"ng-packagr": "9.1.5",
"node-sass": "4.14.1",
"rimraf": "3.0.2",
"rollup": "2.32.1",
"rollup-plugin-angular": "0.5.3",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-terser": "5.3.1",
"rollup-plugin-typescript2": "0.28.0",
"rxjs": "6.6.3",
"rxjs-compat": "6.6.3",
"tsickle": "0.38.1",
"tslib": "1.14.1",
"typescript": "3.4.1",
"zone.js": "0.11.3"
}
}