|
|
@@ -0,0 +1,64 @@
|
|
|
+{
|
|
|
+ "name": "@ckeditor/ckeditor5-mention",
|
|
|
+ "version": "0.0.1",
|
|
|
+ "description": "Mention feature for CKEditor 5.",
|
|
|
+ "keywords": [
|
|
|
+ "ckeditor",
|
|
|
+ "ckeditor5",
|
|
|
+ "ckeditor 5",
|
|
|
+ "ckeditor5-feature",
|
|
|
+ "ckeditor5-plugin"
|
|
|
+ ],
|
|
|
+ "dependencies": {
|
|
|
+ "@ckeditor/ckeditor5-core": "^12.0.0"
|
|
|
+ },
|
|
|
+ "devDependencies": {
|
|
|
+ "@ckeditor/ckeditor5-basic-styles": "^11.0.0",
|
|
|
+ "@ckeditor/ckeditor5-clipboard": "^11.0.0",
|
|
|
+ "@ckeditor/ckeditor5-editor-classic": "^12.0.0",
|
|
|
+ "@ckeditor/ckeditor5-engine": "^13.0.0",
|
|
|
+ "@ckeditor/ckeditor5-enter": "^11.0.0",
|
|
|
+ "@ckeditor/ckeditor5-heading": "^11.0.0",
|
|
|
+ "@ckeditor/ckeditor5-link": "^11.0.0",
|
|
|
+ "@ckeditor/ckeditor5-typing": "^12.0.0",
|
|
|
+ "@ckeditor/ckeditor5-undo": "^11.0.0",
|
|
|
+ "eslint": "^5.5.0",
|
|
|
+ "eslint-config-ckeditor5": "^1.0.11",
|
|
|
+ "husky": "^1.3.1",
|
|
|
+ "lint-staged": "^7.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/ckeditor-5",
|
|
|
+ "bugs": "https://github.com/ckeditor/ckeditor5-mention/issues",
|
|
|
+ "repository": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/ckeditor/ckeditor5-mention.git"
|
|
|
+ },
|
|
|
+ "files": [
|
|
|
+ "lang",
|
|
|
+ "src",
|
|
|
+ "theme"
|
|
|
+ ],
|
|
|
+ "scripts": {
|
|
|
+ "lint": "eslint --quiet '**/*.js'"
|
|
|
+ },
|
|
|
+ "lint-staged": {
|
|
|
+ "**/*.js": [
|
|
|
+ "eslint --quiet"
|
|
|
+ ]
|
|
|
+ },
|
|
|
+ "eslintIgnore": [
|
|
|
+ "src/lib/**",
|
|
|
+ "packages/**"
|
|
|
+ ],
|
|
|
+ "husky": {
|
|
|
+ "hooks": {
|
|
|
+ "pre-commit": "lint-staged"
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|