mirror of
https://github.com/zadam/trilium.git
synced 2025-11-13 09:59:02 +01:00
63 lines
1.5 KiB
JSON
63 lines
1.5 KiB
JSON
{
|
|
"name": "ckeditor5-math",
|
|
"version": "1.0.3",
|
|
"description": "Math feature for CKEditor 5.",
|
|
"keywords": [
|
|
"ckeditor",
|
|
"ckeditor5",
|
|
"ckeditor 5",
|
|
"ckeditor5-feature",
|
|
"ckeditor5-plugin"
|
|
],
|
|
"dependencies": {
|
|
"@ckeditor/ckeditor5-clipboard": "^12.0.2",
|
|
"@ckeditor/ckeditor5-core": "^12.3.0",
|
|
"@ckeditor/ckeditor5-engine": "^14.0.0",
|
|
"@ckeditor/ckeditor5-ui": "^14.0.0",
|
|
"@ckeditor/ckeditor5-undo": "^11.0.5",
|
|
"@ckeditor/ckeditor5-utils": "^14.0.0",
|
|
"@ckeditor/ckeditor5-widget": "^11.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@ckeditor/ckeditor5-dev-tests": "^16.9.0",
|
|
"@ckeditor/ckeditor5-editor-inline": "^12.3.0",
|
|
"@ckeditor/ckeditor5-essentials": "^11.0.5",
|
|
"@ckeditor/ckeditor5-paragraph": "^11.0.5",
|
|
"eslint": "^5.5.0",
|
|
"eslint-config-ckeditor5": "^2.0.0",
|
|
"husky": "^1.3.1",
|
|
"lint-staged": "^7.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=8.0.0",
|
|
"npm": ">=5.7.1"
|
|
},
|
|
"author": "Sauli Anto",
|
|
"license": "ISC",
|
|
"bugs": "https://github.com/isaul32/ckeditor5-math/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/isaul32/ckeditor5-math.git"
|
|
},
|
|
"files": [
|
|
"lang",
|
|
"src",
|
|
"theme"
|
|
],
|
|
"scripts": {
|
|
"lint": "eslint --quiet **/*.js",
|
|
"lint:fix": "eslint --quiet **/*.js --fix",
|
|
"test": "node node_modules/@ckeditor/ckeditor5-dev-tests/bin/test.js"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.js": [
|
|
"eslint --quiet"
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
}
|
|
}
|