Files
Trilium/package.json

76 lines
1.9 KiB
JSON
Raw Normal View History

2019-08-31 20:48:37 +03:00
{
"name": "ckeditor5-math",
2020-12-12 18:04:54 +02:00
"version": "24.0.0",
2019-08-31 20:48:37 +03:00
"description": "Math feature for CKEditor 5.",
"keywords": [
"ckeditor",
"ckeditor5",
"ckeditor 5",
"ckeditor5-feature",
2020-08-29 17:33:41 +03:00
"ckeditor5-plugin",
"ckeditor5-math"
2019-08-31 20:48:37 +03:00
],
2020-02-27 20:33:39 +02:00
"dependencies": {
2020-12-12 18:04:54 +02:00
"@ckeditor/ckeditor5-clipboard": "^24.0.0",
"@ckeditor/ckeditor5-core": "^24.0.0",
"@ckeditor/ckeditor5-engine": "^24.0.0",
"@ckeditor/ckeditor5-ui": "^24.0.0",
"@ckeditor/ckeditor5-undo": "^24.0.0",
"@ckeditor/ckeditor5-utils": "^24.0.0",
"@ckeditor/ckeditor5-widget": "^24.0.0"
2020-02-27 20:33:39 +02:00
},
"devDependencies": {
2020-11-07 20:02:46 +02:00
"@ckeditor/ckeditor5-dev-tests": "^23.3.0",
2020-12-12 18:04:54 +02:00
"@ckeditor/ckeditor5-editor-inline": "^24.0.0",
"@ckeditor/ckeditor5-essentials": "^24.0.0",
"@ckeditor/ckeditor5-paragraph": "^24.0.0",
2020-08-29 17:33:41 +03:00
"eslint": "^7.1.0",
"eslint-config-ckeditor5": "^3.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"stylelint": "^13.5.0",
"stylelint-config-ckeditor5": "^2.0.0"
2019-08-31 20:48:37 +03:00
},
"engines": {
2020-08-29 17:33:41 +03:00
"node": ">=12.0.0",
2019-08-31 20:48:37 +03:00
"npm": ">=5.7.1"
},
2019-10-03 20:45:50 +03:00
"author": "Sauli Anto",
2019-08-31 20:48:37 +03:00
"license": "ISC",
2019-10-03 19:27:47 +03:00
"bugs": "https://github.com/isaul32/ckeditor5-math/issues",
"repository": {
"type": "git",
"url": "https://github.com/isaul32/ckeditor5-math.git"
},
2019-08-31 20:48:37 +03:00
"files": [
"lang",
"src",
"theme"
],
"scripts": {
"lint": "eslint --quiet src/**/*.js",
"lint:fix": "eslint --quiet src/**/*.js --fix",
2020-02-27 18:01:21 +02:00
"stylelint": "stylelint --quiet --allow-empty-input 'theme/**/*.css' 'docs/**/*.css'",
2019-10-11 18:10:41 +03:00
"test": "node node_modules/@ckeditor/ckeditor5-dev-tests/bin/test.js"
2019-08-31 20:48:37 +03:00
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
2020-02-27 18:01:21 +02:00
],
"**/*.css": [
"stylelint --quiet --allow-empty-input"
2019-08-31 20:48:37 +03:00
]
},
2020-02-27 18:01:21 +02:00
"eslintIgnore": [
2020-08-29 17:33:41 +03:00
"node_modules/**",
"packages/*/node_modules/**",
"packages/*/build/**",
"packages/*/src/lib/**"
2020-02-27 18:01:21 +02:00
],
2019-08-31 20:48:37 +03:00
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}