forked from ckeditor/ckeditor5-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.86 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
107
108
109
110
111
112
113
114
115
116
{
"__IMPORTANT__": "This file won't be published. See `src/ckeditor/package.json`, which will be published on NPM.",
"name": "@ckeditor/ckeditor5-angular",
"version": "2.0.1",
"private": true,
"description": "Official Angular component for CKEditor 5 – the best browser-based rich text editor.",
"scripts": {
"start": "ng serve --open",
"build": "ng build --prod",
"test": "ng test",
"coverage": "ng test --watch=false --code-coverage",
"lint": "eslint '*/**/*.+(js|ts)'",
"e2e": "ng e2e",
"changelog": "node ./scripts/changelog.js",
"build-package": "node ./scripts/build-package.js",
"release": "node ./scripts/release.js",
"postversion": "npm run build-package",
"build-ckeditor": "cd ckeditor && webpack --mode production"
},
"dependencies": {
"@angular/animations": "^10.1.5",
"@angular/common": "^10.1.5",
"@angular/compiler": "^10.1.5",
"@angular/core": "^10.1.5",
"@angular/forms": "^10.1.5",
"@angular/platform-browser": "^10.1.5",
"@angular/platform-browser-dynamic": "^10.1.5",
"@angular/router": "^10.1.5",
"core-js": "^3.1.3",
"rxjs": "^6.5.2",
"tslib": "^2.0.0",
"zone.js": "~0.11.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1001.6",
"@angular/cli": "^10.1.6",
"@angular/compiler-cli": "^10.1.5",
"@angular/language-service": "^10.1.5",
"@ckeditor/ckeditor5-adapter-ckfinder": "^23.0.0",
"@ckeditor/ckeditor5-autoformat": "^23.0.0",
"@ckeditor/ckeditor5-basic-styles": "^23.0.0",
"@ckeditor/ckeditor5-block-quote": "^23.0.0",
"@ckeditor/ckeditor5-ckfinder": "^23.0.0",
"@ckeditor/ckeditor5-core": "^23.0.0",
"@ckeditor/ckeditor5-dev-env": "^23.5.1",
"@ckeditor/ckeditor5-dev-utils": "^23.5.1",
"@ckeditor/ckeditor5-dev-webpack-plugin": "^23.5.1",
"@ckeditor/ckeditor5-easy-image": "^23.0.0",
"@ckeditor/ckeditor5-editor-classic": "^23.0.0",
"@ckeditor/ckeditor5-essentials": "^23.0.0",
"@ckeditor/ckeditor5-heading": "^23.0.0",
"@ckeditor/ckeditor5-image": "^23.0.0",
"@ckeditor/ckeditor5-indent": "^23.0.0",
"@ckeditor/ckeditor5-link": "^23.0.0",
"@ckeditor/ckeditor5-list": "^23.0.0",
"@ckeditor/ckeditor5-media-embed": "^23.0.0",
"@ckeditor/ckeditor5-paragraph": "^23.0.0",
"@ckeditor/ckeditor5-paste-from-office": "^23.0.0",
"@ckeditor/ckeditor5-table": "^23.0.0",
"@ckeditor/ckeditor5-theme-lark": "^23.0.0",
"@ckeditor/ckeditor5-watchdog": "^23.0.0",
"@types/jasmine": "^3.3.13",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^14.11.8",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"coveralls": "^3.0.3",
"eslint": "^7.11.0",
"eslint-config-ckeditor5": "^3.1.0",
"fs-extra": "^9.0.1",
"husky": "^4.3.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-firefox-launcher": "^1.1.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^10.4.0",
"ng-packagr": "^10.1.0",
"protractor": "~7.0.0",
"ts-node": "^9.0.0",
"typescript": "~4.0.3",
"webpack": "^4.0.0",
"webpack-cli": "^4.0.0"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=5.7.1"
},
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"homepage": "https://ckeditor.com",
"bugs": "https://github.com/ckeditor/ckeditor5-angular/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-angular.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.+(js|ts)": [
"eslint --quiet"
]
},
"eslintIgnore": [
"**/node_modules/**",
"**/dist/**",
"src/polyfills.ts",
"ckeditor/**"
]
}