forked from sajivkumar/mathjax-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.41 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.41 KB
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
{
"name": "@cex-solutions/mathjax-angular",
"description": "A quick way to implement Mathjax v3 into your Angular project!",
"homepage": "https://github.com/sajivkumar/mathjax-angular/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/cex-solutions/mathjax-angular.git"
},
"publishConfig": {
"repository": "https://npm.pkg.github.com/"
},
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "npm run dev",
"watch": "ng build --watch --configuration development",
"build-lib": "ng build mathjax-lib",
"build": "run-s -n \"ng build mathjax-lib\" \"ng build testMathjax -- --output-hashing=all -c={1}\" --",
"clean": "rimraf dist",
"wth:c-lib": "ng build mathjax-lib --watch",
"srv-app": "wait-on dist/mathjax-lib/public-api.d.ts && run-p -r -n \"ng s -- -c={1} --port 3300 -o\" --",
"serve": "npm run clean && run-p -r -n \"wth:*\" \"srv-app -- {1}\" --",
"dev": "npm run serve dev",
"prod": "npm run serve prod",
"semantic-release": "semantic-release",
"commit": "git add . && git-cz"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.5",
"@angular/common": "^19.1.5",
"@angular/compiler": "^19.1.5",
"@angular/core": "^19.1.5",
"@angular/forms": "^19.1.5",
"@angular/platform-browser": "^19.1.5",
"@angular/platform-browser-dynamic": "^19.1.5",
"@angular/router": "^19.1.5",
"rxjs": "~7.5.0",
"tslib": "^2.4.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular/build": "^19.1.6",
"@angular/cli": "^19.1.6",
"@angular/compiler-cli": "^19.1.5",
"@types/mathjax": "^0.0.37",
"@types/node": "^18.7.21",
"cz-conventional-changelog": "^3.3.0",
"karma-coverage": "~2.0.3",
"ng-packagr": "^19.1.2",
"npm-run-all": "^4.1.5",
"semantic-release": "^23.0.2",
"typescript": "5.7.3",
"wait-on": "^7.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": true,
"pkgRoot": "dist/mathjax-lib",
"tarballDir": "dist",
"registry": "https://npm.pkg.github.com/"
}
],
"@semantic-release/github"
]
}
}