-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 715 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 715 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": "@kahlil/blog-cli",
"version": "1.0.5",
"description": "A cli to create blog posts for static site generators.",
"license": "MIT",
"repository": "kahlil/blog-cli",
"author": {
"name": "Kahlil Lechelt",
"email": "hello@kahlil.info",
"url": "http://kahlillechelt.com"
},
"bin": {
"blog": "cli.js"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"cli.js",
"lib/*"
],
"keywords": [
"cli-app",
"cli"
],
"dependencies": {
"chalk": "^2.4.2",
"conf": "^2.1.0",
"git-root-dir": "^1.0.2",
"meow": "^5.0.0",
"opn": "^5.4.0",
"simple-git": "^1.107.0"
},
"devDependencies": {
"ava": "^0.25.0",
"xo": "^0.21.0"
}
}