forked from fenneclab/hugo-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "hugo-bin",
"version": "0.93.0",
"hugoVersion": "0.105.0",
"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]>",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"bin": {
"hugo": "cli.js"
},
"dependencies": {
"bin-wrapper": "^4.1.0",
"picocolors": "^1.0.0",
"pkg-conf": "^4.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"bin-check": "^4.1.0",
"eslint": "^8.26.0",
"uvu": "^0.5.6"
},
"scripts": {
"lint": "eslint .",
"fix": "npm run lint -- --fix",
"uvu": "uvu test",
"test": "npm run lint && npm run uvu",
"postinstall": "rimraf vendor && node lib/install.js"
},
"files": [
"lib/*.js",
"cli.js",
"index.js"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}