summaryrefslogtreecommitdiff
path: root/src/stylesheets/package.json
blob: 06a527e90dcfa529bcf606747e67da908d570bc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "private": true,
  "description": "Compiles the default stylesheet for the built-in HTML converter.",
  "devDependencies": {
    "autoprefixer": "~10.4",
    "cssnano": "~5.0",
    "postcss": "~8.4",
    "postcss-cli": "~9.1",
    "stylelint": "~14.5",
    "stylelint-config-standard": "~25.0"
  },
  "scripts": {
    "build": "postcss asciidoctor.css -o ../../data/stylesheets/asciidoctor-default.css && postcss coderay-asciidoctor.css -o ../../data/stylesheets/coderay-asciidoctor.css",
    "lint": "stylelint *.css"
  },
  "browserslist": [
    "defaults"
  ]
}