-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.2 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
39
{
"name": "simply-disable-comments",
"version": "0.1.3",
"description": "A simple way to fully disable comments on your WordPress.",
"author": {
"name": "handyplugins",
"email": "[email protected]",
"url": "https://handyplugins.co",
"role": "developer"
},
"license": "GPL-2.0-or-later",
"scripts": {
"start": "composer install && npm install --production=false && npm run build",
"watch": "10up-toolkit watch",
"build": "10up-toolkit build",
"format-js": "10up-toolkit format-js",
"lint-js": "10up-toolkit lint-js",
"lint-style": "10up-toolkit lint-style",
"test": "10up-toolkit test-unit-jest",
"make-pot": "wp i18n make-pot . languages/simply-disable-comments.pot --include='includes'",
"build-release": "npm install --production=false && composer install --no-dev -o && npm run build && npm run make-pot",
"lint-release": "npm install && composer install && npm run lint"
},
"devDependencies": {
"10up-toolkit": "^6.0"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"normalize.css": "^8.0.1"
},
"10up-toolkit": {
"entry": {
"editor": "./assets/js/editor.js"
},
"wpDependencyExternals": true
}
}