-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 KB
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
{
"name": "wp-env-and-phpunit",
"description": "Boilerplate for a plugin development for creating serveral blocks using wp-env.",
"version": "1.0.3",
"main": "index.js",
"scripts": {
"up": "wp-env start",
"down": "wp-env stop",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "wp-scripts build ",
"start": "wp-scripts start ",
"format": "wp-scripts format && stylelint \"**/*.scss\" --fix",
"lint:css": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:php": "echo \"Use phpcs and phpcbf iftou have it\" && exit 1"
},
"prettier": "@wordpress/prettier-config",
"stylelint": {
"extends": "@wordpress/stylelint-config/scss"
},
"keywords": [
"boilerplate",
"wp-env",
"phpunit",
"wp-scripts",
"linting"
],
"author": "@cobianzo",
"license": "ISC",
"devDependencies": {
"@wordpress/eslint-plugin": "^21.1.2",
"@wordpress/prettier-config": "^4.8.1",
"@wordpress/scripts": "^30.0.2",
"@wordpress/stylelint-config": "^19.1.0",
"ajv": "^8.17.1",
"eslint-config-prettier": "^7.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"stylelint": "^13.13.1"
}
}