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

package.json - github.com/jakewies/hugo-theme-codex.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c3e8575e33e21554efb091daba9d98b858fa53ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
  "name": "hugo-theme-codex",
  "version": "1.6.0",
  "author": "Jake Wiesler",
  "description": "A minimal blog theme for Hugo",
  "license": "MIT",
  "scripts": {
    "develop": "hugo server -s ./exampleSite/",
    "build:example": "hugo -s ./exampleSite/",
    "format": "prettier ./ --write"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "devDependencies": {
    "husky": "^4.2.5",
    "lint-staged": ">=10",
    "prettier": "^2.0.5"
  },
  "browserslist": [
    "last 2 version",
    "> 2%"
  ],
  "homepage": "https://github.com/jakewies/hugo-theme-codex",
  "bugs": "https://github.com/jakewies/hugo-theme-codex/issues",
  "keywords": [
    "hugo",
    "blog",
    "go"
  ],
  "lint-staged": {
    "*.{js,css,scss}": "prettier --write"
  }
}