-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.08 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
58
59
60
61
62
63
64
65
66
67
{
"name": "simplifii",
"private": true,
"version": "1.0.0",
"description": "The simple WordPress Full Site Editing theme",
"author": "Leo Gopal",
"license": "GPL-2.0-or-later",
"keywords": [
"WordPress",
"theme"
],
"homepage": "https://github.com/leogopal/simplifii#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/leogopal/simplifii.git"
},
"bugs": {
"url": "https://github.com/leogopal/simplifii/issues"
},
"dependencies": {
"@wordpress/escape-html": "^2.16.0",
"@wordpress/format-library": "^3.14.0",
"@wordpress/html-entities": "^3.16.0",
"@wordpress/i18n": "^4.16.0",
"@wordpress/icons": "^9.7.0",
"@wordpress/npm-package-json-lint-config": "^4.2.0",
"@wordpress/nux": "^5.14.0",
"@wordpress/postcss-plugins-preset": "^4.0.0",
"@wordpress/postcss-themes": "^5.0.0",
"@wordpress/preferences": "^2.8.0",
"@wordpress/preferences-persistence": "^1.8.0",
"@wordpress/reusable-blocks": "^3.14.0",
"@wordpress/style-engine": "^0.15.0"
},
"devDependencies": {
"@wordpress/babel-preset-default": "^7.0.0",
"@wordpress/eslint-plugin": "^13.0.0",
"@wordpress/prettier-config": "^2.0.0",
"@wordpress/scripts": "^24.0.0",
"@wordpress/stylelint-config": "^21.0.0",
"glob": "^8.0.3",
"prettier": "^2.7.1",
"stylelint": "^14.10.0"
},
"scripts": {
"lint:css": "stylelint **/*.css -i .gitignore",
"lint:css:fix": "stylelint **/*.css -i .gitignore --fix",
"lint:php": "./vendor/bin/phpcs",
"lint:php:fix": "./bin/phpcbf.sh",
"build": "wp-scripts build",
"check-engines": "wp-scripts check-engines",
"check-licenses": "wp-scripts check-licenses",
"format": "wp-scripts format",
"lint:js": "wp-scripts lint-js",
"lint:md:docs": "wp-scripts lint-md-docs",
"lint:pkg-json": "wp-scripts lint-pkg-json",
"packages-update": "wp-scripts packages-update",
"plugin-zip": "wp-scripts plugin-zip",
"start": "wp-scripts start",
"test:e2e": "wp-scripts test-e2e",
"test:unit": "wp-scripts test-unit-js"
},
"prettier": "@wordpress/prettier-config",
"npmpackagejsonlint": {
"extends": "@wordpress/npm-package-json-lint-config"
}
}