-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 999 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
{
"name": "user-last-modified",
"description": "A WordPress code library for tracking the user last modified date and time.",
"author": "Micah Wood <[email protected]> (https://wpscholar.com)",
"license": "GPL-2.0-or-later",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/wp-forge/user-last-modified.git"
},
"bugs": {
"url": "https://github.com/wp-forge/user-last-modified/issues"
},
"homepage": "https://github.com/wp-forge/user-last-modified#readme",
"devDependencies": {
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"yaml-lint": "^1.2.4"
},
"scripts": {
"lint": "yamllint --ignore=node_modules/** **/*.yml",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.yml": [
"yamllint --ignore=node_modues/**"
],
"**/*.php": [
"vendor/bin/phpcs --standard=WPScholar -s"
]
}
}