-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "ucsc-2022",
"version": "4.2.1",
"description": "The offficial WordPress theme for UC Santa Cruz",
"main": "build/index.js",
"scripts": {
"build": "wp-scripts build",
"format": "wp-scripts format",
"format:src": "wp-scripts format ./src",
"lint:style": "wp-scripts lint-style",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"postinstall": "husky install",
"postpackages-update": "npm run build",
"release": "standard-version",
"start": "wp-scripts start",
"start:hot": "wp-scripts start --hot",
"test": "lint-staged",
"zip": "wp-scripts build && wp-scripts plugin-zip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ucsc/ucsc-2022.git"
},
"keywords": [
"WordPress"
],
"author": "UC Santa Cruz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ucsc/ucsc-2022/issues"
},
"prettier": "@wordpress/prettier-config",
"homepage": "https://github.com/ucsc/ucsc-2022#readme",
"devDependencies": {
"@wordpress/prettier-config": "^2.9.0",
"@wordpress/scripts": "^25.3.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"verge": "^1.10.2"
},
"files": [
"!vendor/bin",
"!vendor/squizlabs/php_codesniffer",
"!vendor/dealerdirect",
"!vendor/wp-coding-standards",
"build",
"blocks",
"images",
"lib",
"parts",
"patterns",
"screenshot.png",
"style.css",
"templates",
"theme.json",
"vendor",
"wp-blocks",
"CHANGELOG.md",
"README.md",
"readme.txt",
"*.php"
],
"standard-version": {
"bumpFiles": [
{
"filename": "package-lock.json",
"type": "json"
},
{
"filename": "package.json",
"type": "json"
},
{
"filename": "style.css",
"updater": "wp-theme-version-updater.js"
}
]
}
}