-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
68 lines (68 loc) · 2.15 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
{
"name": "ngx-markdown-editor",
"version": "5.3.3",
"description": "Angular markdown editor based on ace editor",
"main": "index.js",
"scripts": {
"build": "ng-packagr -p ng-package.json -c tsconfig.ngc.json",
"postbuild": "npm run build:schematics && npm run copy",
"build:schematics": "tsc -p tsconfig.schematics.json",
"ng": "ng",
"start": "ng serve --port=4300",
"build:demo": "ng build",
"copy": "npm run copy:assets && npm run copy:schemas && npm run copy:collection",
"copy:assets": "xcopy src\\assets dist\\assets /S/E/I",
"copy:schemas": "xcopy schematics\\ng-add\\schema.json dist\\schematics\\ng-add\\schema.json*",
"copy:collection": "xcopy schematics\\collection.json dist\\schematics\\collection.json*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lon-yang/ngx-markdown-editor.git"
},
"keywords": [
"markdown",
"markdown editor",
"md editor",
"ace",
"angular",
"angular x"
],
"author": "Lon.L.Yang",
"license": "Apache License 2.0",
"schematics": "./schematics/collection.json",
"bugs": {
"url": "https://github.com/lon-yang/ngx-markdown-editor/issues"
},
"homepage": "https://github.com/lon-yang/ngx-markdown-editor#readme",
"peerDependencies": {
"ace-builds": ">=1.4.x",
"bootstrap": ">=3.0.0",
"font-awesome": ">=4.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.0.5",
"@angular-devkit/core": "15.0.5",
"@angular-devkit/schematics": "15.0.5",
"@angular/cli": "15.0.5",
"@angular/common": "15.1.0",
"@angular/compiler": "15.1.0",
"@angular/compiler-cli": "15.1.0",
"@angular/core": "15.1.0",
"@angular/forms": "15.1.0",
"@angular/platform-browser": "15.1.0",
"@angular/platform-browser-dynamic": "15.1.0",
"@angular/router": "15.1.0",
"@fortawesome/fontawesome-free": "^6.2.1",
"ace-builds": "^1.14.0",
"bootstrap": "4.6.2",
"font-awesome": "^4.7.0",
"ng-packagr": "15.1.0",
"rxjs": "^7.8.0",
"tslib": "2.4.1",
"typescript": "4.8.4",
"zone.js": "~0.12.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}