forked from bcgov/bcgov-wordpress-block-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.72 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
{
"name": "bcgov-wordpress-block-theme",
"version": "1.1.2",
"description": "Bcgov WordPress Block Theme",
"author": "[email protected]",
"license": "Apache-2.0",
"keywords": [
"Wordpress",
"Block Theme",
"BCGov"
],
"homepage": "https://github.com/bcgov/bcgov-wordpress-block-theme#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bcgov/bcgov-wordpress-block-theme.git"
},
"bugs": {
"url": "https://github.com/bcgov/bcgov-wordpress-block-theme/issues"
},
"main": "index.js",
"devDependencies": {
"@bcgov/bc-sans": "^1.0.1",
"@wordpress/scripts": "^25.4.0",
"classnames": "^2.3.1",
"lodash": "^4.17.21"
},
"scripts": {
"build": "wp-scripts build src/scripts/admin src/scripts/public src/scripts/public/font.js --output-path=dist",
"build:production": "npm run format && npm run lint:js && npm run fix:css && npm run lint:css && npm run test:unit && npm run build",
"lint:css": "wp-scripts lint-style src/styles",
"fix:css": "wp-scripts lint-style --fix --config @wordpress/stylelint-config/scss src/styles",
"lint:js": "wp-scripts lint-js src/scripts",
"format": "wp-scripts format src/scripts",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start src/scripts/admin src/scripts/public src/scripts/public/font.js --output-path=dist",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js --passWithNoTests",
"test": "npm run test:unit"
},
"engines": {
"npm": ">=9.0.0 <10.0.0",
"node": ">=18.0.0 <19.0.0"
},
"dependencies": {
"@wordpress/icons": "^9.6.0"
}
}