-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.17 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.17 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
{
"name": "gcode-reference",
"version": "2.0.0",
"description": "G-code reference plugin for WordPress",
"scripts": {
"build:css": "cleancss -o assets/app.min.css assets/app.css",
"build:js": "terser assets/app.js -o assets/app.min.js --compress --mangle --comments false",
"build": "npm run build:css && npm run build:js",
"lint:php": "phpcs --standard=WordPress gcode-reference.php admin/",
"lint:js": "eslint assets/app.js",
"lint": "npm run lint:php && npm run lint:js",
"format:php": "phpcbf --standard=WordPress gcode-reference.php admin/",
"format:js": "eslint --fix assets/app.js",
"deploy": "npm run build && npm run lint",
"zip": "powershell -ExecutionPolicy Bypass -File build-plugin-zip.ps1"
},
"devDependencies": {
"clean-css-cli": "^5.6.3",
"eslint": "^8.57.0",
"eslint-config-wordpress": "^2.0.0",
"eslint-plugin-jsdoc": "^48.0.0",
"terser": "^5.46.0"
},
"keywords": [
"gcode",
"marlin",
"klipper",
"3d-printing",
"wordpress"
],
"author": "3D Partner",
"license": "GPL-2.0-or-later"
}