UNPKG

1.99 kBJSONView Raw
1{
2 "name": "sitedown",
3 "description": "Minimalist Markdown-based static site generator",
4 "version": "5.1.3",
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 "cheerio": "^1.0.0-rc.3",
14 "cliclopts": "^1.1.1",
15 "event-stream": "4.0.1",
16 "gaze": "^1.1.1",
17 "highlight.js": "^11.5.0",
18 "markdown-it": "^13.0.0",
19 "markdown-it-abbr": "^1.0.4",
20 "markdown-it-deflist": "^2.0.1",
21 "markdown-it-emoji": "^2.0.0",
22 "markdown-it-footnote": "^3.0.1",
23 "markdown-it-github-headings": "^2.0.0",
24 "markdown-it-highlightjs": "^4.0.1",
25 "markdown-it-ins": "^3.0.0",
26 "markdown-it-mark": "^3.0.0",
27 "markdown-it-sub": "^1.0.0",
28 "markdown-it-sup": "^1.0.0",
29 "minimist": "^1.1.1",
30 "mkdirp": "^2.1.2",
31 "readdirp": "^3.5.0",
32 "serve": "^14.1.2"
33 },
34 "devDependencies": {
35 "gh-pages": "^4.0.0",
36 "gh-release": "^7.0.0",
37 "npm-run-all2": "^6.0.0",
38 "snazzy": "^9.0.0",
39 "standard": "^17.0.0",
40 "tap-arc": "^0.3.4",
41 "tape": "^5.0.1"
42 },
43 "engines": {
44 "node": ">=14"
45 },
46 "homepage": "https://github.com/ungoldman/sitedown",
47 "keywords": [
48 "generator",
49 "markdown",
50 "site",
51 "static",
52 "website"
53 ],
54 "license": "ISC",
55 "main": "index.js",
56 "repository": {
57 "type": "git",
58 "url": "https://github.com/ungoldman/sitedown.git"
59 },
60 "scripts": {
61 "gh-pages": "npm run site && gh-pages -d site",
62 "postrelease": "npm publish",
63 "prerelease": "git push --follow-tags",
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}