-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 2.05 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
{
"name": "design-system-wordpress-theme",
"version": "1.4.0",
"description": "Design System WordPress Theme",
"author": "[email protected]",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"Block Theme",
"BCGov",
"DesignSystem",
"Gutenberg"
],
"homepage": "https://github.com/bcgov/design-system-wordpress-theme#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/bcgov/design-system-wordpress-theme.git"
},
"bugs": {
"url": "https://github.com/bcgov/design-system-wordpress-theme#readme",
"email": "[email protected]"
},
"engines": {
"npm": ">= 10.7.0",
"node": ">=20.15.1"
},
"main": "index.js",
"dependencies": {
"@bcgov/design-tokens": "^3.0.1",
"@wordpress/icons": "^10.3.0"
},
"devDependencies": {
"@bcgov/bc-sans": "^2.1.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",
"@wordpress/base-styles": "^5.7.0",
"@wordpress/scripts": "^28.6.0"
},
"scripts": {
"build": "wp-scripts build --output-path=dist",
"build:production": "npm ci && npm run fix:js && npm run fix:css && npm run fix:md && npm run test:unit && npm run build",
"lint:css": "wp-scripts lint-style 'src/**/*.scss' --allow-empty-input",
"fix:css": "wp-scripts lint-style 'src/**/*.scss' --fix --allow-empty-input",
"lint:js": "wp-scripts lint-js src/scripts",
"fix:js": "wp-scripts lint-js src/scripts --fix",
"format": "wp-scripts format src/",
"lint:md": "wp-scripts lint-md-docs --config .markdownlint.json --ignore-path .markdownlintignore",
"fix:md": "wp-scripts lint-md-docs --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"start": "wp-scripts start --output-path=dist",
"test:e2e": "wp-scripts test-e2e --passWithNoTests",
"test:unit": "wp-scripts test-unit-js --passWithNoTests",
"test": "npm run test:unit"
}
}