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