UNPKG

1.98 kBJSONView Raw
1{
2 "name": "sitedown",
3 "description": "Minimal Markdown-based static site generator.",
4 "version": "5.1.0",
5 "author": "Nate Goldman <ungoldman@gmail.com>",
6 "bin": {
7 "sitedown": "./bin.js"
8 },
9 "bugs": {
10 "url": "https://github.com/ungoldman/sitedown/issues"
11 },
12 "dependencies": {
13 "@ungoldman/serve": "^14.1.0",
14 "cheerio": "^1.0.0-rc.3",
15 "cliclopts": "^1.1.1",
16 "event-stream": "4.0.1",
17 "gaze": "^1.1.1",
18 "highlight.js": "^11.5.0",
19 "markdown-it": "^13.0.0",
20 "markdown-it-abbr": "^1.0.4",
21 "markdown-it-deflist": "^2.0.1",
22 "markdown-it-emoji": "^2.0.0",
23 "markdown-it-footnote": "^3.0.1",
24 "markdown-it-github-headings": "^2.0.0",
25 "markdown-it-highlightjs": "^4.0.1",
26 "markdown-it-ins": "^3.0.0",
27 "markdown-it-mark": "^3.0.0",
28 "markdown-it-sub": "^1.0.0",
29 "markdown-it-sup": "^1.0.0",
30 "minimist": "^1.1.1",
31 "mkdirp": "^1.0.4",
32 "readdirp": "^3.5.0"
33 },
34 "devDependencies": {
35 "gh-pages": "^3.1.0",
36 "gh-release": "^6.0.1",
37 "npm-run-all2": "^5.0.0",
38 "rimraf": "^3.0.2",
39 "snazzy": "^9.0.0",
40 "standard": "^17.0.0",
41 "tap-arc": "^0.3.4",
42 "tape": "^5.0.1"
43 },
44 "engines": {
45 "node": ">=14"
46 },
47 "homepage": "https://github.com/ungoldman/sitedown",
48 "keywords": [
49 "generator",
50 "markdown",
51 "site",
52 "static",
53 "website"
54 ],
55 "license": "ISC",
56 "main": "index.js",
57 "repository": {
58 "type": "git",
59 "url": "https://github.com/ungoldman/sitedown.git"
60 },
61 "scripts": {
62 "gh-pages": "npm run site && gh-pages -d site",
63 "postrelease": "npm publish",
64 "pretest": "standard | snazzy",
65 "release": "gh-release",
66 "serve:site": "serve site",
67 "serve:watch": "npm run site:html -- -w",
68 "site": "run-s site:*",
69 "site:clean": "rm -rf site",
70 "site:html": "./bin.js . -b site -l docs/layout.html",
71 "start": "npm-run-all site:clean \"site:html -- -d\"",
72 "test": "tape test/*.js | tap-arc"
73 }
74}