-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.93 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": "block-editor-custom-alignments",
"version": "1.0.8",
"description": "Allows developers to add custom alignments to `theme.json` for use in the block editor.",
"author": "Modern Tribe <[email protected]>",
"license": "GPL-2.0-or-later",
"keywords": [],
"homepage": "https://github.com/moderntribe/block-editor-custom-alignments#readme",
"repository": "https://github.com/moderntribe/block-editor-custom-alignments",
"bugs": {
"email": "[email protected]"
},
"browserslist": [
"last 2 versions",
"safari >= 15",
"ios >= 15",
"android >= 8.0",
"not op_mini all",
"not dead"
],
"directories": {
"admin": "admin/",
"public": "public/"
},
"engines": {
"node": "16.13.1"
},
"devDependencies": {
"@csstools/postcss-global-data": "^1.0.3",
"@wordpress/scripts": "^25.4.0",
"cssnano": "^5.1.15",
"fast-glob": "^3.2.12",
"lefthook": "^1.1",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.0.1",
"webpack-remove-empty-scripts": "^1.0"
},
"scripts": {
"dist": "wp-scripts build",
"dev": "wp-scripts start",
"format": "wp-scripts format \"./@(admin|public)/**/*.js\"",
"lint": "npm run format && npm run lint:js:fix && npm run lint:css:fix",
"lint:css": "wp-scripts lint-style \"./@(admin|public)/**/*.pcss\"",
"lint:css:fix": "wp-scripts lint-style \"./@(admin|public)/**/*.pcss\" --fix",
"lint:js": "wp-scripts lint-js \"./@(admin|public)/**/*.js\"",
"lint:js:fix": "wp-scripts lint-js \"./@(admin|public)/**/*.js\" --fix",
"lint:configs": "wp-scripts lint-js \"./*.js\"",
"lint:configs:fix": "wp-scripts lint-js \"./*.js\" --fix",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"server-lint": "npm run lint:js && npm run lint:css",
"server-dist": "npm run dist"
}
}