-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.61 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
{
"name": "glossary-by-arteeo",
"version": "1.0.0",
"description": "Glossary block for the Gutenberg editor.",
"author": {
"name": "Arteeo",
"email": "[email protected]",
"url": "https://github.com/Arteeo"
},
"license": "MIT",
"keywords": [
"Glossary",
"glossary",
"Arteeo",
"Gutenberg",
"Block"
],
"homepage": "https://github.com/Arteeo/glossary-by-arteeo",
"repository": "https://github.com/Arteeo/glossary-by-arteeo",
"bugs": {
"url": "https://github.com/Arteeo/glossary-by-arteeo/issues",
"email": "[email protected]"
},
"devDependencies": {
"@wordpress/api-fetch": "^3.18.0",
"@wordpress/scripts": "^12.1.1",
"archiver": "^4.0.1",
"colors": "^1.4.0",
"copy-dir": "^1.3.0",
"eslint": "^7.5.0"
},
"scripts": {
"build:dev": "wp-scripts build src/js/block/glossary-by-arteeo-block-backend.js src/js/block/glossary-by-arteeo-block-resize.js src/js/block/glossary-by-arteeo-block-frontend.js --output-path dist/js/block/ --mode development && node _utils/copy.js && node _utils/zip.js",
"build:prod": "wp-scripts build src/js/block/glossary-by-arteeo-block-backend.js src/js/block/glossary-by-arteeo-block-resize.js src/js/block/glossary-by-arteeo-block-frontend.js --output-path dist/js/block/ --mode production && node _utils/copy.js && node _utils/zip.js",
"lint:css": "wp-scripts lint-style ./src",
"lint:js": "wp-scripts lint-js ./src",
"lint:md:docs": "wp-scripts lint-md-docs *.md",
"lint:md:js": "wp-scripts lint-md-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update"
}
}