-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.4 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
{
"name": "future-imperfect",
"version": "1.0.0",
"description": "A blog-style template, Future Imperfect features a clean, expansive layout, a toggleable search box, and a whole lot of flexbox action, ported to the ghost template system",
"main": "assets/js/main.js",
"engines": {
"ghost": ">=4.0.0",
"ghost-api": "v4"
},
"scripts": {
"start": "(trap 'kill 0' SIGINT; sass --watch assets/sass/main.scss:assets/css/main.css assets/sass/fontawesome.scss:assets/css/fontawesome.css & /usr/bin/python -m SimpleHTTPServer)",
"build": "npm run css1 && npm run css2 && npm run html",
"css1": "sass assets/sass/main.scss assets/css/main.css",
"css2": "sass assets/sass/fontawesome.scss assets/css/fontawesome.css",
"html": "for file in *-body.html; do awk -v body_file=$file -f build.awk template.html > ${file%-body.html}.html ; done",
"test": "gscan . --verbose"
},
"repository": {
"type": "git",
"url": "./"
},
"keywords": [
"ghost",
"template",
"theme",
"ghost-theme",
"blog"
],
"author": {
"name": "Camden Narzt & @ajlkn",
"email": "[email protected]"
},
"config": {
"posts_per_page": 10,
"image_sizes": {}
},
"license": "CC-BY 3.0",
"dependencies": {
"gscan": "^4.2.1",
"sass": "^1.35.2"
}
}