-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 974 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
30
31
{
"name": "slug-namexx",
"description": "Notification extension",
"author": "BracketSpace",
"license": "GPL-3.0-or-later",
"scripts": {
"build": "mp-scripts build --mode=development",
"build:production": "mp-scripts build --mode=production",
"start": "mp-scripts start",
"lint:css": "mp-scripts lint-style",
"lint:js": "mp-scripts lint-js",
"fix:css": "mp-scripts lint-style --fix",
"fix:js": "mp-scripts lint-js --fix",
"lint": "run-p \"lint:*\"",
"fix": "run-p \"fix:*\"",
"makepot": "wp-pot --src 'src/**/*.php' --src 'notification-slug-namexx.php' --src 'resources/templates/**/*.php' --dest-file 'resources/languages/notification-slug-namexx.pot' --package 'notification-slug-namexx'"
},
"devDependencies": {
"@micropackage/scripts": "^1.1.0",
"npm-run-all": "^4.1.5",
"wp-pot-cli": "^1.3.0"
},
"mpScriptsConfig": {
"paths": {
"src": "resources",
"scripts": "js/src",
"styles": "css/src",
"output": "resources"
}
}
}