-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
38 lines (38 loc) · 1.01 KB
/
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
32
33
34
35
36
37
38
{
"name": "notification",
"version": "7.0.0",
"description": "Notification plugin",
"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:*\"",
"test-php": "wp-env run tests-wordpress --env-cwd=wp-content/plugins/notification ./vendor/bin/pest -- --configuration phpunit.xml"
},
"author": "BracketSpace",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@micropackage/scripts": "^1.2.5",
"@wordpress/env": "^9.7.0",
"npm-run-all": "^4.1.5"
},
"dependencies": {
"clipboard": "^2.0.4",
"jquery-collapse": "^1.1.2",
"selectize": "^0.12.4",
"vue": "2.6.11"
},
"mpScriptsConfig": {
"paths": {
"src": "resources",
"scripts": "js/src",
"styles": "css/src",
"output": "resources"
}
}
}