forked from nikku/hugo-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 909 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 909 Bytes
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
{
"name": "hugo-cli",
"version": "0.9.0",
"description": "A node friendly wrapper around hugo (http://gohugo.io/)",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha"
},
"bin": {
"hugo": "bin/cmd.js"
},
"author": "Nico Rehwaldt<git_nikku@nixis.de>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"decompress": "^4.0.0",
"got": "^9.3.2",
"mkdirp": "^0.5.1",
"semver": "^5.3.0"
},
"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": "^5.10.0",
"eslint-plugin-bpmn-io": "^0.6.0",
"execa": "^0.10.0",
"mocha": "^4.0.1",
"npm-run-all": "^4.1.5",
"tempy": "^0.2.1"
}
}