-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
97 lines (97 loc) · 1.9 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "hugo-bin",
"version": "0.136.2",
"hugoVersion": "0.139.2",
"description": "Binary wrapper for Hugo",
"repository": {
"type": "git",
"url": "git+https://github.com/fenneclab/hugo-bin.git"
},
"bugs": {
"url": "https://github.com/fenneclab/hugo-bin/issues"
},
"homepage": "https://github.com/fenneclab/hugo-bin#readme",
"author": "satoshun00 <[email protected]>",
"contributors": [
"XhmikosR <[email protected]>"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/XhmikosR"
}
],
"keywords": [
"binary",
"executable",
"hugo",
"sass",
"scss",
"wrapper"
],
"license": "MIT",
"type": "module",
"exports": {
".": "./index.js"
},
"bin": {
"hugo": "bin/cli.js"
},
"files": [
"bin/cli.js",
"lib/*.js",
"index.js"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@xhmikosr/bin-wrapper": "^13.0.5",
"package-config": "^5.0.0"
},
"devDependencies": {
"@xhmikosr/bin-check": "^7.0.3",
"c8": "^10.1.2",
"uvu": "^0.5.6",
"xo": "^0.59.3"
},
"scripts": {
"lint": "xo",
"fix": "xo --fix",
"uvu": "uvu test",
"test": "npm run lint && npm run uvu",
"test:ci": "c8 npm run uvu",
"postinstall": "node lib/install.js"
},
"xo": {
"space": true,
"rules": {
"arrow-body-style": "off",
"camelcase": [
"error",
{
"properties": "never"
}
],
"capitalized-comments": "off",
"comma-dangle": [
"error",
"never"
],
"operator-linebreak": [
"error",
"after"
],
"object-curly-spacing": [
"error",
"always"
],
"space-before-function-paren": [
"error",
"never"
],
"unicorn/prefer-top-level-await": "off",
"unicorn/prevent-abbreviations": "off"
}
}
}