-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@sixa/wp-scripts",
"version": "1.0.0",
"description": "Collection of reusable scripts for WordPress development.",
"author": "sixa AG",
"license": "GPL-3.0-or-later",
"keywords": [
"wordpress",
"gutenberg",
"scripts"
],
"homepage": "https://github.com/sixach/wp-scripts#readme",
"bugs": {
"url": "https://github.com/sixach/wp-scripts/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sixach/wp-scripts.git"
},
"files": [
"bin",
"scripts",
"utils"
],
"scripts": {
"format": "wp-scripts format",
"lint:js": "wp-scripts lint-js",
"lint:js-fix": "wp-scripts lint-js --fix",
"test:unit": "wp-scripts test-unit-js",
"test:unit:help": "wp-scripts test-unit-js --help",
"test:unit:watch": "wp-scripts test-unit-js --watch",
"test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache"
},
"bin": {
"sixa-wp-scripts": "./bin/wp-scripts.js"
},
"dependencies": {
"archiver": "5.3.0",
"minimatch": "3.1.2"
},
"devDependencies": {
"@wordpress/scripts": "18.1.0",
"memfs": "3.4.1"
},
"publishConfig": {
"access": "public"
}
}