-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.18 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.18 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
{
"name": "website-sockethub.org",
"version": "2.0.0",
"description": "Source for the sockethub.org website (Metalsmith-based static site).",
"main": "build.js",
"private": true,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "node build.js",
"build:stable": "SOCKETHUB_CHANNEL=stable node build.js",
"build:alpha": "SOCKETHUB_CHANNEL=alpha node build.js",
"serve": "cd build && python3 -m http.server 8080"
},
"repository": {
"type": "git",
"url": "https://github.com/sockethub/website-sockethub.org.git"
},
"author": "Nick Jennings <nick@silverbucket.net>",
"license": "ISC",
"bugs": {
"url": "https://github.com/sockethub/website-sockethub.org/issues"
},
"homepage": "https://github.com/sockethub/website-sockethub.org",
"devDependencies": {
"@metalsmith/collections": "^2.0.0",
"@metalsmith/layouts": "^3.0.0",
"@metalsmith/markdown": "^1.10.0",
"@metalsmith/permalinks": "^3.2.0",
"jstransformer-handlebars": "^1.2.0",
"metalsmith": "^2.7.0",
"metalsmith-discover-helpers": "^0.1.1",
"metalsmith-discover-partials": "^0.1.2",
"metalsmith-feed": "^1.0.0",
"metalsmith-sitemap": "^1.2.2"
}
}