Przeglądaj źródła

Internal: Added package.json.

Krzysztof Krztoń 7 lat temu
rodzic
commit
45807456d9
1 zmienionych plików z 46 dodań i 0 usunięć
  1. 46 0
      packages/ckeditor5-paste-from-office/package.json

+ 46 - 0
packages/ckeditor5-paste-from-office/package.json

@@ -0,0 +1,46 @@
+{
+  "name": "@ckeditor/ckeditor5-paste-from-word",
+  "version": "0.0.1",
+  "description": "Paste from Word feature for CKEditor 5.",
+  "keywords": [
+    "ckeditor",
+    "ckeditor5",
+    "ckeditor 5",
+    "ckeditor5-feature",
+    "paste from Word"
+  ],
+  "dependencies": {},
+  "devDependencies": {
+    "eslint": "^4.15.0",
+    "eslint-config-ckeditor5": "^1.0.7",
+    "husky": "^0.14.3",
+    "lint-staged": "^7.0.0"
+  },
+  "engines": {
+    "node": ">=6.9.0",
+    "npm": ">=3.0.0"
+  },
+  "author": "CKSource (http://cksource.com/)",
+  "license": "GPL-2.0-or-later",
+  "homepage": "https://ckeditor.com",
+  "bugs": {
+    "url": "https://github.com/ckeditor/ckeditor5-paste-from-word/issues"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/ckeditor/ckeditor5-paste-from-word.git"
+  },
+  "scripts": {
+    "lint": "eslint --quiet '**/*.js'",
+    "precommit": "lint-staged"
+  },
+  "lint-staged": {
+    "**/*.js": [
+      "eslint --quiet"
+    ]
+  },
+  "eslintIgnore": [
+    "src/lib/**",
+    "packages/**"
+  ]
+}