|
|
@@ -0,0 +1,51 @@
|
|
|
+{
|
|
|
+ "name": "@ckeditor/ckeditor5-restricted-editing",
|
|
|
+ "version": "0.0.0",
|
|
|
+ "description": "A restricted editing feature for CKEditor 5 editors.",
|
|
|
+ "keywords": [
|
|
|
+ "ckeditor",
|
|
|
+ "ckeditor5",
|
|
|
+ "ckeditor 5",
|
|
|
+ "ckeditor5-lib"
|
|
|
+ ],
|
|
|
+ "devDependencies": {
|
|
|
+ "eslint": "^5.5.0",
|
|
|
+ "eslint-config-ckeditor5": "^2.0.0",
|
|
|
+ "husky": "^2.4.1",
|
|
|
+ "lint-staged": "^8.2.1"
|
|
|
+ },
|
|
|
+ "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/issues",
|
|
|
+ "repository": {
|
|
|
+ "type": "git",
|
|
|
+ "url": "https://github.com/ckeditor/ckeditor5-restricted-editing.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"
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|