-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "garbados-blog",
"description": "Words as thought by meat.",
"homepage": "https://garbados.github.io/my-blog",
"version": "1.0.0-beta",
"private": true,
"scripts": {
"start": "run-p build serve",
"test": "npm run build && npm audit",
"prebuild": "mkdir -p static fonts",
"build": "run-p build:*",
"build:html": "./bin.js build",
"build:rss": "./bin.js rss",
"build:scss": "sass -q -I node_modules resources/scss/style.scss public/css/style.css",
"build:fonts": "cp node_modules/font-awesome/fonts/* public/fonts/",
"build:images": "cp resources/img/* public/img/",
"new-entry": "./bin.js new-entry",
"clean": "rm entries/*.md *.html; npm run build",
"watch": "sane 'npm run build' --glob={resources,entries}/**/*",
"serve": "serve public",
"dev": "run-p watch serve"
},
"keywords": [
"blog"
],
"author": "Diana Belle <garbados@gmail.com>",
"license": "GPL-3.0",
"devDependencies": {
"bulma": "^1.0.2",
"font-awesome": "^4.7.0",
"handlebars": "^4.7.8",
"js-yaml": "4.1.0",
"marked": "^14.1.3",
"npm-run-all": "^4.1.5",
"rss": "^1.2.2",
"sane": "^5.0.1",
"sass": "^1.80.5",
"serve": "^14.2.4",
"yargs": "^17.7.2"
}
}