-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
38 lines (38 loc) · 824 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
38
{
"name": "cli-blogger",
"version": "0.0.1",
"description": "write blogs with markdown",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"toc": "node ./bin/create-toc.js > README.md",
"test": "tap test/*.js",
"docs": "bundle exec jekyll serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zoubin/engineering.git"
},
"keywords": [
"frontend",
"blog",
"markdown"
],
"author": "zoubin",
"license": "MIT",
"bugs": {
"url": "https://github.com/zoubin/engineering/issues"
},
"homepage": "https://github.com/zoubin/engineering#readme",
"devDependencies": {
"fs-extra": "^7.0.0",
"globby": "^8.0.1",
"markdown": "^0.5.0",
"tap": "^12.0.1"
},
"dependencies": {
"@types/node": "^14.14.41"
}
}