forked from sitepoint-editors/metalsmith-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.24 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
{
"name": "artisan-maker",
"version": "1.0.0",
"description": "A website for my father-in-law",
"main": "build.js",
"scripts": {
"start": "node ./build.js",
"production": "NODE_ENV=production node ./build.js; git subtree push --prefix build origin gh-pages; git commit -a -m \"Updated\"; git push",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"node.js",
"javascript",
"metalsmith",
"static",
"website"
],
"author": "Jon Barlow",
"license": "MIT",
"devDependencies": {
"handlebars": "^4.0.11",
"metalsmith": "^2.1.0",
"metalsmith-assets": "^0.1.0",
"metalsmith-browser-sync": "^1.1.0",
"metalsmith-collections": "^0.7.0",
"metalsmith-concat": "^6.0.0",
"metalsmith-feed": "^0.2.0",
"metalsmith-html-minifier": "^2.4.5",
"metalsmith-in-place": "^1.4.3",
"metalsmith-layouts": "^1.8.1",
"metalsmith-mapsite": "^1.0.4",
"metalsmith-markdown": "^0.2.2",
"metalsmith-move-remove": "0.0.1",
"metalsmith-permalinks": "^0.5.0",
"metalsmith-publish": "^0.1.3",
"metalsmith-register-helpers": "^0.2.0",
"metalsmith-sass": "^1.5.1",
"metalsmith-word-count": "0.0.4"
},
"dependencies": {
"foundation-sites": "^6.4.3"
}
}