angelovcom.net

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

package.json (1484B)


      1 {
      2   "name": "twentynineteen",
      3   "version": "2.1.0",
      4   "description": "Default WP Theme",
      5   "bugs": {
      6     "url": "https://core.trac.wordpress.org/"
      7   },
      8   "homepage": "https://wordpress.org/themes/twentynineteen/",
      9   "devDependencies": {
     10     "@wordpress/browserslist-config": "^4.0.1",
     11     "autoprefixer": "^9.8.6",
     12     "chokidar-cli": "^2.1.0",
     13     "node-sass": "^6.0.0",
     14     "npm-run-all": "^4.1.5",
     15     "postcss-cli": "^7.1.2",
     16     "postcss-focus-within": "^4.0.0",
     17     "rtlcss": "^3.2.0"
     18   },
     19   "rtlcssConfig": {
     20     "options": {
     21       "autoRename": false,
     22       "autoRenameStrict": false,
     23       "clean": true,
     24       "greedy": false,
     25       "processUrls": false,
     26       "stringMap": []
     27     },
     28     "plugins": [],
     29     "map": false
     30   },
     31   "browserslist": [
     32     "extends @wordpress/browserslist-config"
     33   ],
     34   "scripts": {
     35     "build:style": "node-sass style.scss style.css --output-style expanded && postcss -r style.css",
     36     "build:style-editor": "node-sass style-editor.scss style-editor.css --output-style expanded && postcss -r style-editor.css",
     37     "build:style-editor-customizer": "node-sass style-editor-customizer.scss style-editor-customizer.css --output-style expanded && postcss -r style-editor-customizer.css",
     38     "build:rtl": "rtlcss style.css style-rtl.css",
     39     "build:print": "node-sass print.scss print.css --output-style expanded && postcss -r print.css",
     40     "build": "run-p \"build:*\"",
     41     "watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial"
     42   }
     43 }