-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.9 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
{
"name": "ingia",
"version": "1.0.0",
"description": "Ghost blog theme for personal website",
"repository": {
"type": "git",
"url": "git+https://github.com/stefanbc/Ingia.git"
},
"engines": {
"ghost": ">=2.0.0",
"ghost-api": "v2"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal"
]
},
"keywords": [
"ghost",
"ghost-theme",
"ghost-blog",
"ghost-cms",
"ghost-blog-theme",
"ghost-themes",
"minimal",
"ghost-theme",
"theme"
],
"author": {
"name": "Stefan Cosma",
"url": "https://stefancosma.xyz",
"email": "hello@stefancosma.xyz"
},
"contributors": [
{
"name": "Stefan Cosma",
"email": "hello@stefancosma.xyz",
"url": "https://stefancosma.xyz"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanbc/Ingia/issues"
},
"homepage": "https://github.com/stefanbc/Ingia#readme",
"scripts": {
"clean": "rimraf ./assets/css && rimraf ./ingia.zip",
"mkdir": "mkdir -p ./assets/css",
"zip": "zip -r9 ingia.zip . -x *.cache* *.git* *.vscode* *.sass-cache* *node_modules/\\*",
"validate": "gscan ./ingia.zip -z",
"build-css-dev": "parcel ./assets/scss/index.scss ./assets/scss/vendor.scss --no-source-maps -d ./assets/css",
"build-css-prod": "parcel build ./assets/scss/index.scss ./assets/scss/vendor.scss --no-source-maps -d ./assets/css",
"watch": "parcel watch ./assets/scss/*.scss --no-source-maps -d ./assets/css",
"dev": "yarn clean && yarn mkdir && yarn build-css-dev",
"prod": "yarn clean && yarn mkdir && yarn build-css-prod",
"deploy": "yarn prod && yarn zip && yarn validate"
},
"dependencies": {
"normalize.css": "^8.0.1",
"skeleton.css": "^2.0.4"
},
"devDependencies": {
"gscan": "^2.9.0",
"parcel-bundler": "^1.12.3",
"rimraf": "^3.0.0",
"sass": "^1.22.12"
},
"config": {
"posts_per_page": 5
}
}