-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
29 lines (29 loc) · 1014 Bytes
/
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
{
"name": "magento2-module-wordpress-integration-cms",
"version": "1.0.0",
"description": "NPM package to build the Block styles",
"author": "Mooore",
"homepage": "https://mooore.nl/",
"private": true,
"scripts": {
"minify": "npx postcss src/wp-blocks.css > view/frontend/web/css/wp-blocks.css",
"copy": "cp src/wp-blocks.scss view/frontend/web/css/wp-blocks.css",
"sass": "npx sass src/wp-blocks.scss src/wp-blocks.css -I node_modules",
"build:dev": "npm run sass && npm run copy",
"build": "npm run sass && npm run minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mooore-digital/magento2-module-wordpress-integration-cms.git"
},
"bugs": "https://github.com/mooore-digital/magento2-module-wordpress-integration-cms/issues",
"dependencies": {
"@wordpress/base-styles": "^4.4.0",
"@wordpress/block-library": "^7.4.0"
},
"devDependencies": {
"cssnano": "^5.1.10",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0"
}
}