-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
54 lines (54 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
48
49
50
51
52
53
54
{
"name": "hugo-cli",
"version": "0.14.0",
"description": "A node friendly wrapper around hugo (http://gohugo.io/)",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha"
},
"exports": {
".": {
"import": "./index.js"
},
"./package.json": "./package.json"
},
"bin": {
"hugo": "bin/cmd.js"
},
"type": "module",
"author": "Nico Rehwaldt<[email protected]>",
"engines": {
"node": ">= 20"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"decompress": "^4.2.1",
"got": "^14.4.3",
"semver": "^7.6.3"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/nikku/hugo-cli.git"
},
"keywords": [
"wrapper",
"static site generator"
],
"bugs": {
"url": "https://github.com/nikku/hugo-cli/issues"
},
"devDependencies": {
"eslint": "^9.13.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"execa": "^9.4.1",
"mocha": "^10.7.3",
"npm-run-all2": "^7.0.0"
},
"files": [
"bin",
"index.js"
]
}