-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.05 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
{
"name": "kirbytextwrap",
"description": "Kirby plugin to get rid of the kirbytext() <p> enclosing tag, or replace them and add HTML attributes. It Keep the kirbytag working.",
"version": "1.2.0",
"keywords": [
"kirby",
"plugin",
"kirby3",
"kirby3-cms",
"kirby3-plugin",
"kirbytext"
],
"license": "MIT",
"homepage": "https://github.com/yoanmalie/kirbytextwrap",
"bugs": "https://github.com/yoanmalie/kirbytextwrap/issues",
"author": {
"name": "Yoan Malié",
"email": "[email protected]",
"url": "https://yoan-malie.fr"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prettier": "prettier --write \"*.{php,md,json}\""
},
"devDependencies": {
"@prettier/plugin-php": "^0.9.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.0",
"prettier": "^1.16.0"
},
"prettier": {
"trailingComma": "all"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{php,md,json}": [
"prettier --write",
"git add"
]
}
}