-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.3 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.3 KB
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
{
"name": "hugo-bin",
"version": "0.157.1",
"hugoVersion": "0.160.1",
"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 <shun.sato@fenneclab.com>",
"contributors": [
"XhmikosR <xhmikosr@gmail.com>"
],
"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": ">=20"
},
"dependencies": {
"@xhmikosr/bin-wrapper": "^14.2.3",
"package-config": "^5.0.0"
},
"devDependencies": {
"@xhmikosr/bin-check": "^8.2.1",
"c8": "^11.0.0",
"uvu": "^0.5.6",
"xo": "^2.0.2"
},
"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"
}
}