themes-wordpress/spearhead/package.json
Sarah Norris 6fda92d1f7
Update all dependencies and add update script (#5304)
* Add update-dependencies script

* Update deps for all themes

* update barnsbury package.lock

* Rebuild all themes

* Another run of update & build all

* Update alves package-lock

* Update root package-lock

* Update all package-lock files

* Add nvmrc file

* Remove .nvmrc file

* Add node version to root package json

Co-authored-by: Ben Dwyer <ben@scruffian.com>
2022-01-14 14:28:12 +00:00

42 lines
1.2 KiB
JSON

{
"name": "spearhead",
"version": "1.3.5",
"description": "a podcast theme",
"keywords": [
"gutenberg",
"blocks",
"themes"
],
"author": "automattic",
"license": "GPL-2.0",
"devDependencies": {
"@wordpress/browserslist-config": "^4.1.0",
"chokidar-cli": "^3.0.0",
"minimist": "^1.2.2",
"node-sass": "^7.0.1",
"npm-run-all": "^4.1.5",
"rtlcss": "^3.5.0"
},
"rtlcssConfig": {
"options": {
"autoRename": false,
"autoRenameStrict": false,
"blacklist": {},
"clean": true,
"greedy": false,
"processUrls": false,
"stringMap": []
},
"plugins": [],
"map": false
},
"scripts": {
"start": "npm run watch",
"build:style": "node-sass assets/sass/style.scss style.css --output-style expanded --indent-type tab --indent-width 1 --source-map true",
"build:navigation": "node-sass assets/sass/navigation.scss navigation.css --output-style expanded --indent-type tab --indent-width 1 --source-map true",
"build:rtl": "rtlcss style.css style-rtl.css",
"build:navigation-rtl": "rtlcss navigation.css navigation-rtl.css",
"build": "run-s \"build:*\"",
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial"
}
}