forked from ghiscoding/angular-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.13 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
99
100
101
102
103
104
105
106
{
"name": "angular-markdown-editor",
"version": "2.0.2",
"description": "Bootstrap Markdown components made available in Angular",
"keywords": [
"angular",
"plugin",
"bootstrap-markdown"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4300 --open",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build-lib": "npm-run-all packagr",
"build-lib-demo": "npm-run-all build-lib del-demo:dist copy-demo:dist",
"copy-demo:dist": "cross-env copyfiles --up 1 dist/**/*.* ../angular-markdown-editor-demo/node_lib/angular-markdown-editor",
"del-demo:dist": "cross-env rimraf ../angular-markdown-editor-demo/node_lib/angular-markdown-editor",
"pack-lib": "npm pack ./dist",
"packagr": "ng-packagr -p package.json"
},
"author": "Ghislain B.",
"repository": {
"type": "git",
"url": "http://github.com/ghiscoding/angular-markdown-editor"
},
"main": "src/lib/angular-markdown-editor/index",
"private": false,
"ngPackage": {
"$schema": "./node_modules/ng-packagr/ng-package.schema.json",
"whitelistedNonPeerDependencies": [
"."
],
"dest": "dist",
"workingDirectory": ".ng_build",
"lib": {
"entryFile": "src/public_api.ts",
"umdModuleIds": {}
}
},
"dependencies": {
"bootstrap": "^3.4.0",
"bootstrap-markdown": "toopay/bootstrap-markdown",
"core-js": "^2.5.1",
"font-awesome": "^4.7.0",
"jquery": ">=3.2.1",
"vinyl-paths": "^2.1.0"
},
"devDependencies": {
"@angular/animations": "^5.0.0",
"@angular/cli": "^1.6.0",
"@angular/common": "^5.0.0",
"@angular/compiler": "5.0.0",
"@angular/compiler-cli": "5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/language-service": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/router": "^5.0.0",
"@types/flatpickr": "^3.1.2",
"@types/jasmine": "~2.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/moment": "^2.13.0",
"@types/node": "^8.0.39",
"@types/text-encoding-utf-8": "^1.0.1",
"codelyzer": "~3.2.0",
"copyfiles": "^1.2.0",
"cross-env": "^5.1.0",
"custom-event-polyfill": "^0.3.0",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.7.0",
"gulp-sass": "^3.1.0",
"gulp-yuidoc": "^0.1.2",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ng-packagr": "^2.4.5",
"ngx-markdown": "1.5.2",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"postcss-cli": "^4.1.1",
"protractor": "~5.1.2",
"require-dir": "^0.3.2",
"rimraf": "^2.6.2",
"run-sequence": "^2.2.0",
"ts-node": "~3.3.0",
"tsickle": "^0.26.0",
"tslint": "^5.8.0",
"typescript": "~2.6.2",
"uglify-js": "^3.3.20",
"yargs": "^9.0.1",
"zone.js": "^0.8.17"
}
}