-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1011 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
32
33
34
35
36
37
38
{
"name": "theme-customizer",
"version": "1.0.0",
"description": "A handy PHP class to integrate WordPress Theme Customizer.",
"main": "index.js",
"directories": {
"test": "tests"
},
"engines": {
"node": ">=12.0"
},
"scripts": {
"start": "wp-env start",
"test": "echo \"Error: no test specified\" && exit 1",
"env": "wp-env",
"cli": "wp-env run cli wp",
"uglify": "uglifyjs assets/js/multiple-checkbox.js --compress --mangle -o assets/js/multiple-checkbox.min.js --source-map"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuno1/theme-customizer.git"
},
"keywords": [
"wordpress"
],
"author": "Kunoichi INC <sushi@kunoichiwp.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/kuno1/theme-customizer/issues"
},
"homepage": "https://github.com/kuno1/theme-customizer#readme",
"devDependencies": {
"@wordpress/env": "^1.3.0"
},
"dependencies": {
"uglify-js": "^3.12.1"
}
}