forked from openSUSE/Customize-IBus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.3 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "customize-ibus",
"version": "82.0.0",
"description": "Full customization of appearance, behavior, system tray and input source indicator for IBus.",
"dependencies": {
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"prettier": "^2.5.1"
},
"scripts": {
"lint": "eslint .",
"postinstall": "husky install",
"pre-commit": "lint-staged && eslint . --fix"
},
"eslintConfig": {
"plugins": [
"prettier"
],
"extends": [
"plugin:prettier/recommended"
],
"ignorePatterns": [],
"rules": {
"prettier/prettier": "error"
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json,css,scss,md,html}": [
"prettier --write"
]
},
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"repository": {
"type": "git",
"url": "ssh://[email protected]:openSUSE/Customize-IBus.git"
},
"keywords": [
"ibus",
"theme"
],
"author": "Hollow Man",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/openSUSE/Customize-IBus/issues"
},
"homepage": "https://github.com/openSUSE/Customize-IBus#readme"
}