-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
103 lines (103 loc) · 2.75 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "asgar",
"description": "A two column, free and open source theme for Ghost",
"demo": "https://asgar.stefancosma.xyz",
"homepage": "https://github.com/stefanbc/Asgar#readme",
"version": "1.0.8",
"engines": {
"ghost": ">=4.0.0",
"ghost-api": "v4"
},
"license": "MIT",
"screenshots": {
"desktop": "assets/screenshot-desktop.jpg",
"mobile": "assets/screenshot-mobile.jpg"
},
"author": {
"name": "Stefan Cosma",
"url": "https://stefancosma.xyz",
"email": "hello@stefancosma.xyz"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal",
"Free",
"Open-Source",
"Two-Column"
]
},
"keywords": [
"ghost",
"ghost-theme",
"ghost-blog",
"ghost-cms",
"ghost-blog-theme",
"ghost-themes",
"minimal",
"ghost-theme",
"theme",
"two-column"
],
"repository": {
"type": "git",
"url": "git+https://github.com/stefanbc/Asgar.git"
},
"bugs": {
"url": "https://github.com/stefanbc/Asgar/issues"
},
"contributors": [
{
"name": "Stefan Cosma",
"email": "hello@stefancosma.xyz",
"url": "https://stefancosma.xyz"
}
],
"scripts": {
"clean": "rm -rf ./assets/css ./assets/fonts ./assets/js ./asgar.zip",
"folders": "mkdir ./assets/css ./assets/js ./assets/fonts",
"zip": "zip -r9 asgar.zip . -x '*source*' '*.cache*' '*.git*' '*.vscode*' '*.sass-cache*' *node_modules/\\*",
"validate": "gscan ./asgar.zip -z",
"copy-fonts": "cp -a ./node_modules/@fortawesome/fontawesome-free/webfonts/. ./source/fonts",
"build-vendor": "parcel build ./source/scss/vendor.scss --no-source-maps -d ./assets/css --public-url /assets/fonts/",
"cleanup-fonts": "rm -rf ./assets/fonts/* ./source/fonts && cp -r ./assets/css/fa-* ./assets/fonts && rm -rf ./assets/css/fa-*",
"css-vendor": "yarn copy-fonts && yarn build-vendor && yarn cleanup-fonts",
"css-index": "parcel build ./source/scss/index.scss --no-source-maps -d ./assets/css",
"js": "parcel build ./source/js/index.js --no-source-maps -d ./assets/js",
"prod": "yarn clean && yarn folders && yarn css-vendor && yarn css-index && yarn js",
"deploy": "yarn prod && yarn zip && yarn validate"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^5.15.4",
"normalize.css": "^8.0.1",
"skeleton.css": "^2.0.4"
},
"devDependencies": {
"gscan": "^4.6.0",
"parcel": "^1.12.4",
"sass": "^1.43.2"
},
"config": {
"posts_per_page": 5,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
}
}
}
}