-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.7 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
46
47
48
49
50
{
"name": "wordpress-plugin-starter",
"version": "1.0.0",
"description": "",
"author": "",
"license": "unlicensed",
"private": true,
"keywords": [],
"homepage": "https://github.com/marioy47/wordpress-plugin-starter/blob/master/README.md",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/marioy47/wordpress-plugin-starter.git"
},
"bugs": {
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@wordpress/scripts": "^26.5.0",
"browser-sync-webpack-plugin": "^2.3.0",
"cspell": "^6.31.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"replace-in-file": "^7.0.1",
"webpack-fix-style-only-entries": "^0.6.1",
"wp-pot": "^1.10.2"
},
"scripts": {
"build": "run-p build:*",
"build:assets": "wp-scripts build",
"build:pot": "node bin/wp-pot.js --src '*.php' --src 'php/**/*.php' --src 'js/**/*.js'",
"cspell-base-command": "cspell --relative --dot --no-progress --show-suggestions --show-context",
"format": "run-p format:*",
"format:css": "wp-scripts lint-style scss/**/*.scss --fix",
"format:js": "wp-scripts lint-js js/**/*.js bin/**/*.js --fix",
"format:md": "wp-scripts lint-md-docs '*.md' --fix",
"lint": "run-p lint:*",
"lint:css": "wp-scripts lint-style scss/**/*.scss",
"lint:js": "wp-scripts lint-js js/**/*.js bin/**/*.js",
"lint:md": "wp-scripts lint-md-docs '*.md'",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"lint:spell": "npm run cspell-base-command -- .",
"postinstall": "run-p postinstall:*",
"postinstall:composer": "composer install",
"postinstall:husky": "husky install",
"postinstall:rename": "node bin/rename-plugin.js",
"start": "wp-scripts start"
}
}