| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- {
- "name": "ckeditor5",
- "version": "1.0.0-alpha.1",
- "description": "The development environment of CKEditor 5.",
- "keywords": [
- "CKEditor",
- "ckeditor5",
- "editor",
- "WYSIWYG",
- "text editor",
- "rich-text editor",
- "contentEditable",
- "editing framework"
- ],
- "dependencies": {
- "@ckeditor/ckeditor5-adapter-ckfinder": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-autoformat": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-basic-styles": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-block-quote": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-build-balloon": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-build-classic": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-build-inline": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-clipboard": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-cloudeservices": "ckeditor/ckeditor5-cloudservices",
- "@ckeditor/ckeditor5-core": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-easy-image": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-editor-balloon": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-editor-classic": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-editor-inline": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-engine": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-enter": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-essentials": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-heading": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-image": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-link": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-list": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-markdown-gfm": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-paragraph": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-theme-lark": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-typing": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-ui": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-undo": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-upload": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-utils": "^1.0.0-alpha.1",
- "@ckeditor/ckeditor5-widget": "^1.0.0-alpha.1"
- },
- "devDependencies": {
- "@ckeditor/ckeditor5-dev-docs": "^7.5.1",
- "@ckeditor/ckeditor5-dev-tests": "^8.2.5",
- "eslint": "^4.8.0",
- "eslint-config-ckeditor5": "^1.0.6",
- "gulp": "^3.9.1",
- "husky": "^0.14.3",
- "lint-staged": "^4.2.3",
- "lerna": "^2.2.0",
- "mgit2": "^0.7.2"
- },
- "engines": {
- "node": ">=6.0.0",
- "npm": ">=3.0.0"
- },
- "author": "CKSource (http://cksource.com/)",
- "license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)",
- "homepage": "http://ckeditor.com",
- "bugs": "https://github.com/ckeditor/ckeditor5/issues",
- "repository": {
- "type": "git",
- "url": "https://github.com/ckeditor/ckeditor5.git"
- },
- "scripts": {
- "lint": "eslint --quiet '**/*.js'",
- "precommit": "lint-staged",
- "test": "node --max_old_space_size=4096 ./node_modules/.bin/ckeditor5-dev-tests --reporter=dots",
- "install-optional-dependencies": "./scripts/install-optional-dependencies.sh",
- "switch-to-dev-dev": "./scripts/switch-to-dev-dev.sh",
- "build-and-publish-docs": "./scripts/docs/build-and-publish.js"
- },
- "lint-staged": {
- "**/*.js": [
- "eslint --quiet"
- ]
- },
- "eslintIgnore": [
- "build/**",
- "coverage/**",
- "packages/**"
- ]
- }
|