-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.42 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.42 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "notification",
"version": "7.0.0",
"description": "Notification plugin",
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"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:*\"",
"start-env": "wp-env start",
"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": "^10.30.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"
},
"resolutions": {
"svgo": "^3.3.3",
"serialize-javascript": "^7.0.3",
"minimatch": "^3.1.3",
"js-yaml": "^4.1.1",
"webpack": "^5.104.1",
"@babel/runtime": "^7.26.10",
"http-cache-semantics": "^4.1.1",
"cross-spawn": "^7.0.6",
"postcss": "^8.4.31",
"semver-regex": "^3.1.4",
"minimist": "^1.2.8"
},
"mpScriptsConfig": {
"paths": {
"src": "resources",
"scripts": "js/src",
"styles": "css/src",
"output": "resources"
}
}
}