forked from ghiscoding/angular-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.94 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
{
"name": "angular-markdown-editor",
"version": "3.0.2",
"description": "Bootstrap Markdown components made available in Angular",
"keywords": [
"angular",
"plugin",
"bootstrap-markdown"
],
"license": "MIT",
"author": "Ghislain B.",
"homepage": "https://ghiscoding.github.io/angular-markdown-editor/",
"bugs": {
"url": "https://github.com/ghiscoding/angular-markdown-editor/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve --port 4300",
"postinstall": "ngcc",
"prebuild": "npm-run-all delete:dist lint",
"build": "ng-packagr -p ng-package.json",
"delete:dist": "cross-env rimraf dist",
"lint": "ng lint",
"packagr": "ng-packagr -p ng-package.json",
"build:demo": "ng build --configuration=production --base-href=\"\"",
"pack-lib": "npm pack ./dist",
"release": "release-it --only-version"
},
"repository": {
"type": "git",
"url": "http://github.com/ghiscoding/angular-markdown-editor"
},
"main": "src/lib/angular-markdown-editor/index",
"private": false,
"comments": {
"new-release": "1- build library (ng-packagr), 2- 'prepare-release' (npm script) and push git tag, 3- copy new version prop into dist/package.json, 4- run script 'pack-lib' and 'npm publish [tar tgz]'"
},
"funding": {
"type": "ko_fi",
"url": "https://ko-fi.com/ghiscoding"
},
"dependencies": {
"bootstrap": ">=4.6.2",
"bootstrap-markdown": "toopay/bootstrap-markdown",
"font-awesome": "^4.7.0",
"jquery": "^3.6.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.10",
"@angular-eslint/builder": "^14.4.0",
"@angular-eslint/eslint-plugin": "^14.4.0",
"@angular-eslint/eslint-plugin-template": "^14.4.0",
"@angular-eslint/schematics": "^14.4.0",
"@angular-eslint/template-parser": "^14.4.0",
"@angular/animations": "^14.2.12",
"@angular/cli": "^14.2.10",
"@angular/common": "^14.2.12",
"@angular/compiler": "^14.2.12",
"@angular/compiler-cli": "^14.2.12",
"@angular/core": "^14.2.12",
"@angular/forms": "^14.2.12",
"@angular/language-service": "^14.2.12",
"@angular/platform-browser": "^14.2.12",
"@angular/platform-browser-dynamic": "^14.2.12",
"@angular/router": "^14.2.12",
"@release-it/conventional-changelog": "^5.1.1",
"@types/jquery": "^3.5.14",
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"custom-event-polyfill": "^1.0.7",
"eslint": "^8.29.0",
"ng-packagr": "^14.3.0",
"ngx-markdown": "^14.0.1",
"npm-run-all2": "^6.0.4",
"release-it": "^15.5.1",
"rimraf": "^3.0.2",
"sass": "^1.56.2",
"ts-node": "^10.9.1",
"tslib": "^2.4.1",
"typescript": "~4.7.4",
"zone.js": "~0.11.8"
},
"engines": {
"node": ">=14.17.0",
"npm": ">=6.14.13"
},
"resolutions": {
"caniuse-lite": "1.0.30001436"
}
}