From 55dbd0d1bf00392bc9859f7e59f84d98db7737c1 Mon Sep 17 00:00:00 2001 From: abuyoyo Date: Tue, 2 Aug 2022 02:54:25 +0300 Subject: [PATCH] npm package.json - node-sass Compile SCSS using node-sass --- package.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..fa28d91 --- /dev/null +++ b/package.json @@ -0,0 +1,24 @@ +{ + "name": "notice-manager", + "version": "0.15.0", + "description": "Manage notices on WordPress admin pages. Adds 'Notices' screen-meta-link.", + "author": "abuyoyo", + "repository": { + "type": "git", + "url": "git+https://github.com/abuyoyo/notice-manager.git" + }, + "bugs": { + "url": "https://github.com/abuyoyo/notice-manager/issues" + }, + "homepage": "https://github.com/abuyoyo/notice-manager#readme", + "scripts": { + "start": "node-sass scss/ -o css/", + "build": "node-sass scss/ -o css/", + "watch": "node-sass -w scss/ -o css/", + "sass": "node-sass -w scss/ -o css/", + "test": "echo \"Error: no test specified\" && exit 1" + }, + "devDependencies": { + "node-sass": "^4.9.3" + } +}