-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
37 lines (37 loc) · 927 Bytes
/
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
{
"name": "jekyll-posts-generator",
"version": "0.0.6",
"description": "Generate jekyll posts from the terminal",
"bin": {
"jposts": "./bin/jposts"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard-format -w bin/jposts others/utilities.js",
"prepublish": "npm run lint",
"precommit": "npm run lint && git add bin/jposts others/utilities.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ismnoiet/jekyll-posts-generator.git"
},
"bugs": {
"url": "http://github.com/ismnoiet/jekyll-posts-generator/issues"
},
"keywords": [
"jekyll",
"post",
"generator"
],
"author": "ismnoiet <[email protected]>",
"license": "MIT",
"dependencies": {
"commander": "^2.9.0",
"json2yaml": "^1.0.3"
},
"preferGlobal": true,
"devDependencies": {
"husky": "^0.14.3",
"standard-format": "^2.1.0"
}
}