-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 KB
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": "polyblog",
"version": "0.0.1",
"description": "polyblog.io CLI to create and manage a blog from the terminal",
"main": "index.js",
"private": false,
"type": "commonjs",
"scripts": {
"develop": "node index.js",
"install-global": "npm install -g .",
"list-global": "npm list -g"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/waiter-io/waiterio.git"
},
"author": "Waiterio LLC <info@waiterio.com>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/waiter-io/waiterio/issues"
},
"homepage": "https://www.polyblog.io/",
"bin": {
"create-blog": "./index.js",
"create-polyblog": "./index.js",
"polyblog": "./index.js"
},
"dependencies": {
"@polyblog/polyblog-js-client": "../polyblog-js-client",
"commander": "9.4.1",
"fs-extra": "10.1.0",
"gray-matter": "^4.0.3",
"inquirer": "8.2.5",
"node-localstorage": "^2.2.1",
"simple-git": "3.15.1"
},
"devDependencies": {}
}