-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
41 lines (41 loc) · 906 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "stylelint-plugin-ckeditor5-rules",
"version": "9.0.0",
"author": "CKSource (http://cksource.com/)",
"license": "MIT",
"homepage": "https://ckeditor.com/ckeditor-5",
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
"description": "CKEditor 5 stylelint preset.",
"keywords": [
"stylelint",
"plugin",
"lint",
"ckeditor"
],
"files": [
"lib",
"CHANGELOG.md"
],
"scripts": {
"test": "jest",
"coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-linters-config.git",
"directory": "packages/stylelint-plugin-ckeditor5-rules"
},
"devDependencies": {
"jest": "^27.5.1",
"jest-preset-stylelint": "^5.0.1",
"stylelint": "^13.13.1"
},
"peerDependencies": {
"stylelint": ">=13.5.0"
},
"jest": {
"testMatch": [
"**/tests/**"
]
}
}