| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "@ckeditor/ckeditor5-basic-styles",
- "version": "1.0.0-beta.1",
- "description": "Basic styles feature for CKEditor 5.",
- "keywords": [
- "ckeditor5",
- "ckeditor5-feature"
- ],
- "dependencies": {
- "@ckeditor/ckeditor5-core": "^1.0.0-beta.1",
- "@ckeditor/ckeditor5-engine": "^1.0.0-beta.1",
- "@ckeditor/ckeditor5-ui": "^1.0.0-beta.1",
- "@ckeditor/ckeditor5-theme-lark": "^1.0.0-beta.1"
- },
- "devDependencies": {
- "@ckeditor/ckeditor5-editor-classic": "^1.0.0-beta.1",
- "@ckeditor/ckeditor5-essentials": "^1.0.0-beta.1",
- "@ckeditor/ckeditor5-paragraph": "^1.0.0-beta.1",
- "@ckeditor/ckeditor5-utils": "^1.0.0-beta.1",
- "eslint": "^4.15.0",
- "eslint-config-ckeditor5": "^1.0.7",
- "husky": "^0.14.3",
- "lint-staged": "^6.0.0"
- },
- "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": "https://ckeditor.com",
- "bugs": "https://github.com/ckeditor/ckeditor5-basic-styles/issues",
- "repository": {
- "type": "git",
- "url": "https://github.com/ckeditor/ckeditor5-basic-styles.git"
- },
- "files": [
- "lang",
- "src",
- "theme"
- ],
- "scripts": {
- "lint": "eslint --quiet '**/*.js'",
- "precommit": "lint-staged"
- },
- "lint-staged": {
- "**/*.js": [
- "eslint --quiet"
- ]
- },
- "eslintIgnore": [
- "src/lib/**",
- "packages/**"
- ]
- }
|