themes-wordpress/spearhead/package.json

28 lines
760 B
JSON
Raw Normal View History

2020-08-04 21:44:03 +00:00
{
"name": "spearhead",
"version": "1.0.0",
"description": "a podcast theme",
"main": "index.js",
"keywords": [
"gutenberg",
"blocks",
"themes"
],
"author": "automattic",
"license": "GPL-2.0",
"devDependencies": {
"@wordpress/browserslist-config": "^2.2.2",
"chokidar-cli": "^2.1.0",
"node-sass": "^4.13.1",
"npm-run-all": "^4.1.5",
"minimist": "^1.2.2",
"rtlcss": "^2.4.0"
},
"scripts": {
"start": "npm run watch",
"build:style": "node-sass assets/sass/style.scss style.css --output-style expanded --indent-type tab --indent-width 1",
"build:rtl": "rtlcss style.css style-rtl.css",
2020-09-24 14:22:19 +00:00
"build": "run-s \"build:*\"",
2020-08-04 21:44:03 +00:00
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial"
}
}