aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 8ee8d951badb3bf5234e2aed403acf8169af7097 (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
37
38
39
{
  "name": "blog",
  "version": "4.0.0",
  "description": "An ephemeral blog",
  "main": "lib/blog.js",
  "bin": {
    "blog": "./bin/blog.js"
  },
  "scripts": {
    "document": "jsdoc2md -f 'lib/**/*.js' > doc/README.md",
    "lint": "eslint .",
    "test": "echo ':('"
  },
  "repository": {
    "type": "git",
    "url": "git+https://git.sr.ht/~rbdr/blog"
  },
  "author": "Ruben Beltran del Rio <ruben@unlimited.pizza>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://gitlab.com/rbdr/blog/issues"
  },
  "homepage": "https://gitlab.com/rbdr/blog#readme",
  "dependencies": {
    "dot": "^1.1.3",
    "entities": "^3.0.1",
    "gemini-to-html": "^2.1.0",
    "getenv": "^1.0.0",
    "minimist": "^1.2.5"
  },
  "devDependencies": {
    "@hapi/eslint-plugin": "^5.1.0",
    "eslint": "^8.5.0",
    "jsdoc-to-markdown": "^7.1.0"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}