-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.19 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.19 KB
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
{
"name": "simple-post-like",
"version": "1.0.0",
"description": "Add simple, intuitive reactions to your posts.",
"author": "Faruk Ahmed <farukahmedinbox@gmail.com> (https://www.farukdesign.com)",
"license": "GPL-2.0-or-later",
"private": true,
"scripts": {
"clean": "rm -f assets/css/*.map",
"dev": "sass assets/scss:assets/css --watch --style=expanded --source-map",
"build": "npm run clean && sass assets/scss:assets/css --style=compressed --no-source-map",
"composer:dev": "composer dump-autoload",
"composer:prod": "composer dump-autoload -o",
"pot": "wp i18n make-pot . languages/simple-post-like.pot --domain=simple-post-like",
"package": "composer dump-autoload -o && npm run build && npm run pot && rm -rf package/simple-post-like && rm -f package/simple-post-like.zip && mkdir -p package/simple-post-like && rsync -av --exclude-from='.distignore' . package/simple-post-like && cd package && zip -r simple-post-like.zip simple-post-like && rm -rf simple-post-like && echo '✅ package/simple-post-like.zip ready!'"
},
"keywords": [
"wordpress",
"post-likes",
"reactions",
"wordpress-plugin"
],
"devDependencies": {
"sass": "^1.94.2"
}
}