-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "jekyll-post",
"version": "1.0.1",
"description": "Draft, edit, publish Jekyll posts from the command line",
"main": "post.js",
"bin": {
"post": "./post.js"
},
"engines": {
"node": ">6.x.x"
},
"scripts": {
"lint": "eslint --format=node_modules/eslint-codeframe-formatter .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/robcrocombe/jekyll-post.git"
},
"author": "Rob Crocombe <[email protected]> (http://robcrocombe.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/robcrocombe/jekyll-post/issues"
},
"homepage": "https://github.com/robcrocombe/jekyll-post#readme",
"devDependencies": {
"eslint": "6.5.1",
"eslint-codeframe-formatter": "1.0.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2"
},
"dependencies": {
"commander": "3.0.2",
"fs-extra": "8.1.0",
"gray-matter": "4.0.2",
"moment": "2.24.0",
"readline-sync": "1.4.10"
}
}