Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « static - github.com/the2ne/hugo-frais.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c75c92a0f966465f96a28e4d369e9528495057c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  "name": "olivierfredon.com",
  "version": "0.0.0",
  "description": "Hugo Frais is pretty cool but without SASS he can't be alive!",
  "main": "style.css",
  "scripts": {

    "build": "npm run sass-build && npm run postcss-build && npm run minify",
    "minify": "cssnano --sourcemap style.css style.css",
    "test": "npm run sass-test",
    "watch": "nodemon -e scss -x \"npm run sass-build\"",

    "sass-test": "stylelint \"sass/**/*.scss\" --syntax scss",
    "sass-build": "node-sass --indent-width 4 --source-map true --output ./ --output-style compressed ./sass/core.scss ./css/style.css",
    "postcss-build": "postcss -c postcss.json",
    "postcss-test": "stylelint style.css"

  },
  "author": "Olivier Fredon",
  "license": "UNLICENSED",
  "private": true
}