-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 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
{
"name": "maestro-connector",
"version": "1.1.1",
"description": "Give trusted web professionals admin access to your WordPress account. Revoke anytime.",
"private": true,
"scripts": {
"i18n": "wpi18n addtextdomain && wpi18n makepot",
"lint": "yamllint --ignore=node_modules/** **/*.yml",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bluehost/wp-maestro.git"
},
"author": "William Earnhardt <[email protected]>",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/bluehost/wp-maestro/issues"
},
"homepage": "https://github.com/bluehost/wp-maestro#readme",
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": "^10.2.0",
"node-wp-i18n": "^1.2.3",
"yaml-lint": "^1.2.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.yml": [
"yamllint --ignore=node_modues/**"
],
"**/*.php": [
"vendor/bin/phpcs --standard=Bluehost -s"
]
}
}