-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
58
59
60
61
62
63
{
"name": "ucsc-custom-functionality",
"version": "2.0.6",
"description": "Contains custom functionality for UCSC WordPress Websites.",
"scripts": {
"build": "wp-scripts build",
"dev": "wp-scripts start",
"lint:css": "wp-scripts lint-style 'src/**/*.scss' --fix",
"lint:js": "wp-scripts lint-js 'src/**/*.js' --fix",
"lint": "npm run lint:css lint:js",
"release": "commit-and-tag-version",
"zip": "wp-scripts plugin-zip",
"packages-update": "wp-scripts packages-update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ucsc/ucsc-custom-functionality.git"
},
"keywords": [
"WordPress",
"plugin"
],
"author": "UC Santa Cruz",
"license": "ISC",
"bugs": {
"url": "https://github.com/ucsc/ucsc-custom-functionality/issues"
},
"homepage": "https://github.com/ucsc/ucsc-custom-functionality#readme",
"devDependencies": {
"@babel/runtime": "^7.29.2",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@wordpress/scripts": "^29.0.0",
"@wordpress/stylelint-config": "^22.7.0",
"commit-and-tag-version": "^12.7.1"
},
"files": [
"src",
"assets",
"vendor",
"build",
"lib",
"plugin.php",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"standard-version": {
"bumpFiles": [
{
"filename": "package-lock.json",
"type": "json"
},
{
"filename": "package.json",
"type": "json"
},
{
"filename": "plugin.php",
"updater": "wp-plugin-version-updater.js"
}
]
}
}