diff options
| author | Charles <sircharlesaze@gmail.com> | 2020-01-07 13:06:14 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2020-01-07 13:06:14 +0100 |
| commit | 7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8 (patch) | |
| tree | f7453d7dd5cbaaab246e23810b02d3edf1e451be /srcs/wordpress/wp-content/themes/twentytwenty/package.json | |
| parent | c59bdcf77c50cbe89b4a93782cdd6d9e7532080e (diff) | |
| download | ft_server-7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8.tar.gz ft_server-7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8.tar.bz2 ft_server-7086111ad4dd997e12a3220e1ee60c9b9bcf0bb8.zip | |
Added wordpress
Diffstat (limited to 'srcs/wordpress/wp-content/themes/twentytwenty/package.json')
| -rw-r--r-- | srcs/wordpress/wp-content/themes/twentytwenty/package.json | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/srcs/wordpress/wp-content/themes/twentytwenty/package.json b/srcs/wordpress/wp-content/themes/twentytwenty/package.json new file mode 100644 index 0000000..ba74d72 --- /dev/null +++ b/srcs/wordpress/wp-content/themes/twentytwenty/package.json @@ -0,0 +1,59 @@ +{ + "name": "twentytwenty", + "version": "1.0.0", + "description": "Default WP Theme", + "author": "The WordPress Contributors", + "license": "GPL-2.0-or-later", + "keywords": [ + "WordPress", + "Theme", + "TwentyTwenty" + ], + "homepage": "https://github.com/wordpress/twentytwenty#readme", + "repository": { + "type": "git", + "url": "git+https://github.com/wordpress/twentytwenty.git" + }, + "bugs": { + "url": "https://github.com/wordpress/twentytwenty/issues" + }, + "devDependencies": { + "@wordpress/browserslist-config": "^2.6.0", + "@wordpress/scripts": "^5.0.0", + "autoprefixer": "^9.6.1", + "concurrently": "^4.1.2", + "postcss-cli": "^6.1.3", + "rtlcss": "^2.4.0", + "stylelint-a11y": "^1.2.1" + }, + "browserslist": [ + "extends @wordpress/browserslist-config" + ], + "rtlcssConfig": { + "options": { + "autoRename": false, + "autoRenameStrict": false, + "blacklist": {}, + "clean": true, + "greedy": false, + "processUrls": false, + "stringMap": [] + }, + "plugins": [], + "map": false + }, + "scripts": { + "build": "npm run build:vendor-prefixes && npm run build:rtl", + "build:rtl": "concurrently \"npm run build:rtl-style\" \"npm run build:rtl-esb\" \"npm run build:rtl-esc\"", + "build:rtl-style": "rtlcss style.css style-rtl.css", + "build:rtl-esb": "rtlcss assets/css/editor-style-block.css assets/css/editor-style-block-rtl.css", + "build:rtl-esc": "rtlcss assets/css/editor-style-classic.css assets/css/editor-style-classic-rtl.css", + "build:vendor-prefixes": "concurrently \"npm run build:vendor-prefixes-style\" \"npm run build:vendor-prefixes-esb\" \"npm run build:vendor-prefixes-esc\"", + "build:vendor-prefixes-style": "postcss -r --no-map style.css assets/css/editor-style-block.css assets/css/editor-style-classic.css", + "build:vendor-prefixes-esb": "postcss -r --no-map assets/css/editor-style-block.css ", + "build:vendor-prefixes-esc": "postcss -r --no-map assets/css/editor-style-classic.css", + "lint:css": "wp-scripts lint-style 'style.css' 'assets/**/*.css'", + "lint:js": "wp-scripts lint-js 'assets/**/*.js'", + "lint:pkg-json": "wp-scripts lint-pkg-json" + } +} |
