-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.37 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "wp-block-directory-template",
"version": "0.4.0",
"description": "Template for scaffolding WordPress plugin optimized for usage with Block Directory.",
"author": "gziolo",
"license": "MIT",
"keywords": [
"crate block",
"template",
"block directory",
"wordpress",
"gutenberg"
],
"homepage": "https://github.com/gziolo/wp-block-directory-template#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gziolo/wp-block-directory-template.git"
},
"bugs": {
"url": "https://github.com/gziolo/wp-block-directory-template/issues"
},
"devDependencies": {
"@wordpress/eslint-plugin": "^12.1.0",
"@wordpress/npm-package-json-lint-config": "^4.1.2",
"@wordpress/prettier-config": "^1.2.0",
"@wordpress/scripts": "^22.5.0",
"prettier": "npm:[email protected]"
},
"scripts": {
"format": "wp-scripts format",
"lint:js": "wp-scripts lint-js",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update"
},
"eslintConfig": {
"extends": "plugin:@wordpress/eslint-plugin/recommended"
},
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config",
"overrides": [
{
"patterns": [
"**/package.json"
],
"rules": {
"valid-values-license": [
"error",
[
"MIT"
]
]
}
}
]
},
"prettier": "@wordpress/prettier-config"
}