-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.16 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.16 KB
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
{
"name": "barebones",
"description": "Beautiful, minimal and responsive.",
"demo": "http://localhost:2368",
"version": "2.0.0",
"engines": {
"ghost": ">=3.0.0",
"ghost-api": "v3"
},
"license": "MIT",
"screenshots": {
"desktop": "",
"mobile": ""
},
"scripts": {
"css": "node-sass ./assets/scss -o ./assets/built",
"css:watch": "node-sass ./assets/scss -wro ./assets/built",
"postcss": "postcss ./assets/built/*.css -m --use autoprefixer -d ./assets/built/",
"js": "uglifyjs ./assets/js/* -c --source-map --output ./assets/built/main.min.js",
"js:watch": "onchange './assets/js/*.js' -v -- npm run js",
"predev": "npm run css && npm run js",
"dev": "npm run css:watch & npm run js:watch",
"build": "npm run predev",
"prezip": "npm run build",
"zip": "mkdir -p ./dist & git archive -o ./dist/barebones.zip HEAD",
"test": "gscan .",
"sweepmac": "echo \"Removing DS_Store files\" & find . -name '.DS_Store' -type f -delete"
},
"author": {
"name": "Mark Garrigan",
"email": "mark@markgarrigan.com",
"url": "https://markgarrigan.com"
},
"gpm": {
"type": "theme",
"categories": [
"Minimal",
"Magazine"
]
},
"keywords": [
"ghost",
"theme",
"ghost-theme"
],
"repository": {
"type": "git",
"url": "https://github.com/markgarrigan/minnie.git"
},
"bugs": "https://github.com/markgarrigan/minnie/issues",
"contributors": "https://github.com/markgarrigan/minnie/graphs/contributors",
"devDependencies": {
"@tryghost/content-api": "^1.0.0",
"autoprefixer": "^9.4.7",
"gscan": "^2.0.0",
"handlebars": "^4.1.0",
"html2plaintext": "^2.1.2",
"lunr": "^2.3.5",
"node-sass": "^4.11.0",
"onchange": "^5.2.0",
"postcss-cli": "^6.1.1",
"remove-markdown": "^0.3.0",
"uglify-js": "^3.4.9"
},
"config": {
"posts_per_page": 25,
"image_sizes": {
"xxs": {
"width": 30
},
"xs": {
"width": 100
},
"s": {
"width": 300
},
"m": {
"width": 600
},
"l": {
"width": 1000
},
"xl": {
"width": 2000
}
}
}
}