-
Notifications
You must be signed in to change notification settings - Fork 81
/
Copy pathpackage.json
98 lines (98 loc) · 3.11 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
{
"name": "ngx-md",
"version": "19.0.0",
"author": {
"name": "Dimpu Aravind Buddha",
"email": "[email protected]",
"url": "http://www.techumber.com"
},
"repository": {
"type": "git",
"url": "https://github.com/dimpu/ngx-md"
},
"bugs": {
"url": "https://github.com/dimpu/ngx-md/issues",
"email": "[email protected]"
},
"homepage": "https://dimpu.github.io/ngx-md/",
"keywords": [
"angular",
"markdown",
"markdown-to-html",
"marked",
"prismjs",
"code highlight"
],
"license": "MIT",
"scripts": {
"demo.start": "ng serve ngx-md-demo",
"demo.build": "ng build ngx-md-demo --configuration production",
"demo.test": "ng test ngx-md-demo",
"demo.lint": "ng lint ngx-md-demo",
"demo.pretty": "prettier --config ./.prettierrc --write ./src/**/*.ts",
"deploy": "ng build --base-href=/https/github.com/ngx-md/ --configuration production ngx-md-demo && gh-pages -d dist/ngx-md-demo",
"lib.start": "ng serve ngx-md",
"lib.build": "ng build ngx-md --configuration production",
"lib.test": "ng test ngx-md",
"lib.lint": "ng lint ngx-md",
"lib.pretty": "prettier --config ./.prettierrc --write ./libs/ngx-md/src/**/*.ts",
"lib.prettier.watch": "onchange 'projects/ngx-md/src**/*.ts' -- prettier --write {{changed}}",
"release-old": "pnpm run lib.build && pnpm version --patch && node ./scripts/pre-publish-hook.js && cd dist/ngx-md && pnpm publish && cd ...",
"release": "pnpm run lib.build && node ./scripts/pre-publish-hook.js && cd dist/ngx-md && pnpm publish && cd ...",
"ci.travis.lib": "pnpm run lib.build",
"ci.travis.demo": "pnpm run demo.build",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.1.3",
"@angular/common": "^19.1.3",
"@angular/compiler": "^19.1.3",
"@angular/core": "^19.1.3",
"@angular/forms": "^19.1.3",
"@angular/platform-browser": "^19.1.3",
"@angular/platform-browser-dynamic": "^19.1.3",
"@angular/router": "^19.1.3",
"@types/he": "^1.1.2",
"@types/marked": "^4.0.3",
"he": "^1.2.0",
"marked": "^4.0.17",
"prismjs": "^1.28.0",
"rxjs": "~7.5.0",
"tslib": "^2.3.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.4",
"@angular/cli": "^19.1.4",
"@angular/compiler-cli": "^19.1.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"@semantic-release/npm": "^12.0.1",
"@types/jasmine": "~4.0.0",
"@types/prismjs": "^1.26.0",
"angular-eslint": "18.3.1",
"eslint": "^9.9.1",
"gh-pages": "^4.0.0",
"jasmine-core": "~4.1.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^19.1.1",
"semantic-release": "^24.1.2",
"typescript": "^5.7.3",
"typescript-eslint": "8.2.0"
},
"auto": {
"plugins": [
"npm",
"conventional-commits",
"first-time-contributor",
"released",
"twitter"
]
}
}