浏览代码

Add initial package.json.

Maciej Gołaszewski 6 年之前
父节点
当前提交
f242130670
共有 1 个文件被更改,包括 51 次插入0 次删除
  1. 51 0
      packages/ckeditor5-restricted-editing/package.json

+ 51 - 0
packages/ckeditor5-restricted-editing/package.json

@@ -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"
+    }
+  }
+}