-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "wordpress-developer-guide",
"version": "1.0.0",
"description": "Complete guide to becoming a professional WordPress developer",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "markdownlint **/*.md",
"lint:fix": "markdownlint **/*.md --fix",
"check-links": "markdown-link-check **/*.md",
"build": "echo \"Build completed\"",
"dev": "echo \"Development server started\"",
"validate": "npm run lint && npm run check-links"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/wordpress-developer-guide.git"
},
"keywords": [
"wordpress",
"development",
"guide",
"tutorial",
"php",
"javascript",
"gutenberg",
"plugins",
"themes"
],
"author": "Your Name",
"license": "MIT",
"bugs": {
"url": "https://github.com/yourusername/wordpress-developer-guide/issues"
},
"homepage": "https://github.com/yourusername/wordpress-developer-guide#readme",
"devDependencies": {
"markdownlint": "^0.38.0",
"markdownlint-cli": "^0.38.0",
"markdown-link-check": "^3.12.0",
"prettier": "^3.1.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"config": {
"markdownlint": {
"default": true,
"MD013": false,
"MD033": false,
"MD041": false
}
}
}