-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
40
41
42
43
44
45
46
47
48
49
{
"name": "zircon",
"version": "2.1.3",
"description": "A simple static site generator for review oriented websites",
"main": "dist/index.js",
"types": "src/index.js",
"scripts": {
"prepublishOnly": "tsc",
"build": "rm -rf ./dist; tsc;"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:drew-y/zircon.git"
},
"keywords": [
"cms",
"zircon",
"static"
],
"bin": "dist/cli.js",
"author": "Drew Youngwerth",
"license": "MIT",
"bugs": {
"url": "https://github.com/drew-y/zircon/issues"
},
"homepage": "https://github.com/drew-y/zircon",
"dependencies": {
"@types/chokidar": "^2.1.3",
"@types/commander": "^2.9.2",
"@types/fs-extra": "^4.0.5",
"@types/highlight.js": "^10.1.0",
"@types/js-yaml": "^3.12.0",
"@types/markdown-it": "0.0.7",
"@types/node": "^10.17.59",
"@types/node-static": "^0.7.6",
"chokidar": "^3.5.1",
"commander": "^2.11.0",
"fs-extra": "^4.0.1",
"handlebars": "^4.1.2",
"highlight.js": "^10.1.2",
"js-yaml": "^3.13.1",
"markdown-it": "^8.4.2",
"markdown-it-named-headings": "^1.1.0",
"node-static": "^0.7.10"
},
"devDependencies": {
"typescript": "^4.2.4"
}
}