-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.19 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
{
"name": "blank-slate",
"description": "Provides a blank page template for use with WordPress page builders.",
"author": "Micah Wood <[email protected]> (https://wpscholar.com)",
"license": "GPL-2.0-or-later",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/aaronreimann/blank-slate.git"
},
"bugs": {
"url": "https://github.com/wpscholar-wp-plugins/blank-slate/issues"
},
"homepage": "https://github.com/wpscholar-wp-plugins/blank-slate#readme",
"scripts": {
"i18n": "wpi18n addtextdomain && wpi18n makepot",
"lint": "npx yamllint **/*.yml",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"husky": "^4.3.6",
"lint-staged": "^10.5.3",
"node-wp-i18n": "^1.2.3",
"yaml-lint": "^1.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npx wpi18n addtextdomain && composer run i18n"
}
},
"lint-staged": {
"**/*.yml": [
"yamllint --ignore=node_modules/**"
],
"**/*.php": [
"vendor/bin/phpcs --standard=WPScholar -s"
]
}
}