Skip to content

Instantly share code, notes, and snippets.

@linuxbastard
Created August 25, 2018 14:32
Show Gist options
  • Save linuxbastard/05179fd4f34bb6e6956b0a2d99314a85 to your computer and use it in GitHub Desktop.
Save linuxbastard/05179fd4f34bb6e6956b0a2d99314a85 to your computer and use it in GitHub Desktop.

Revisions

  1. linuxbastard created this gist Aug 25, 2018.
    80 changes: 80 additions & 0 deletions package.json
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,80 @@
    {
    "name": "foundationpress",
    "title": "FoundationPress",
    "version": "2.10.4",
    "description": "FoundationPress is a WordPress starter theme based on Foundation 6 by Zurb",
    "homepage": "https://foundationpress.olefredrik.com",
    "license": "MIT",
    "main": "gulpfile.js",
    "scripts": {
    "start": "gulp",
    "dev": "gulp build --dev",
    "build": "gulp build --production",
    "package": "gulp package --production",
    "phpcs": "gulp phpcs",
    "phpcbf": "gulp phpcbf"
    },
    "keywords": [
    "FoundationPress",
    "WordPress",
    "starter theme",
    "Foundation",
    "semantic",
    "mobile first",
    "customizable",
    "responsive"
    ],
    "dependencies": {
    "foundation-sites": "6.4.3",
    "jquery": "~3.0.0",
    "what-input": "^4.1.3",
    "motion-ui": "~1.2.2"
    },
    "devDependencies": {
    "ansi-colors": "^1.0.1",
    "babel-core": "^6.24.1",
    "babel-loader": "^7.1.2",
    "babel-preset-es2015": "^6.3.13",
    "babel-register": "^6.7.2",
    "browser-sync": "^2.10.0",
    "dateformat": "^3.0.2",
    "fancy-log": "^1.3.2",
    "gulp": "gulpjs/gulp#4.0",
    "gulp-autoprefixer": "^3.1.0",
    "gulp-babel": "^6.1.2",
    "gulp-clean-css": "^3.3.1",
    "gulp-cli": "^1.2.1",
    "gulp-concat": "^2.5.2",
    "gulp-extname": "^0.2.0",
    "gulp-if": "^2.0.0",
    "gulp-imagemin": "^4.1.0",
    "gulp-load-plugins": "^1.1.0",
    "gulp-phpcbf": "^0.1.2",
    "gulp-phpcs": "^2.1.0",
    "gulp-rev": "^8.0.0",
    "gulp-sass": "^3.1.0",
    "gulp-sourcemaps": "^1.6.0",
    "gulp-uglify": "^1.2.0",
    "gulp-zip": "^4.0.0",
    "js-yaml": "^3.4.6",
    "panini": "^1.3.0",
    "rimraf": "^2.4.3",
    "style-sherpa": "^1.0.0",
    "vinyl-named": "^1.1.0",
    "webpack": "^3.10.0",
    "webpack-stream": "^4.0.0",
    "yargs": "^3.8.0"
    },
    "repository": {
    "type": "git",
    "url": "https://github.com/olefredrik/foundationpress.git"
    },
    "bugs": {
    "url": "https://github.com/olefredrik/foundationpress/issues"
    },
    "babel": {
    "presets": [
    "es2015"
    ]
    }
    }