forked from fenneclab/hugo-bin
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
81 lines (81 loc) · 1.61 KB
/
package.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "hugo-extended",
"version": "0.140.2",
"description": "✏️ Plug-and-play binary wrapper for Hugo Extended, the awesomest static-site generator.",
"license": "MIT",
"homepage": "https://github.com/jakejarvis/hugo-extended",
"author": {
"name": "Jake Jarvis",
"email": "jake@jarv.is",
"url": "https://github.com/jakejarvis"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakejarvis/hugo-extended.git"
},
"files": [
"index.js",
"index.d.ts",
"postinstall.js",
"lib"
],
"bin": {
"hugo": "lib/cli.js",
"hugo-extended": "lib/cli.js"
},
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"careful-downloader": "^3.0.0",
"log-symbols": "^5.1.0",
"read-pkg-up": "^9.1.0"
},
"devDependencies": {
"@jakejarvis/eslint-config": "*",
"del": "^7.1.0",
"eslint": "^8.56.0",
"mocha": "^10.3.0"
},
"scripts": {
"postinstall": "node postinstall.js",
"test": "eslint . && mocha"
},
"engines": {
"node": ">=16.14"
},
"keywords": [
"hugo",
"hugo extended",
"gohugoio",
"cli",
"front-end",
"bin",
"binary",
"wrapper",
"static site generator",
"static-site",
"ssg",
"static",
"markdown",
"blog",
"frontmatter",
"go",
"golang"
],
"eslintConfig": {
"extends": "@jakejarvis/eslint-config",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"ignorePatterns": [
"vendor/**",
"*.d.ts"
]
}
}