-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 2.03 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
{
"name": "bcgov-wordpress-block-theme",
"version": "1.13.0",
"description": "Bcgov WordPress Block Theme",
"author": "govwordpress@gov.bc.ca",
"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": "^2.1.0",
"@bcgov/design-tokens": "2.0.1",
"@wordpress/scripts": "^27.2.0",
"@bcgov/wordpress-eslint": "git+https://github.com/bcgov/wordpress-eslint.git#semver:1.x",
"@bcgov/wordpress-stylelintrc": "git+https://github.com/bcgov/wordpress-stylelintrc.git#semver:1.x",
"classnames": "^2.3.2",
"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 ci && npm run fix:js && 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",
"fix:js": "wp-scripts lint-js src/scripts --fix",
"format": "wp-scripts format src/",
"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 --passWithNoTests",
"test:unit": "wp-scripts test-unit-js --passWithNoTests",
"test": "npm run test:unit"
},
"engines": {
"npm": ">=9.0.0 <11.0.0",
"node": ">=18.0.0 <19.0.0"
},
"dependencies": {
"@wordpress/icons": "^10.6.0"
}
}